50 lines
1.3 KiB
Java
50 lines
1.3 KiB
Java
package com.gxwebsoft.ai.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.fasterxml.jackson.annotation.JsonAlias;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import io.swagger.annotations.ApiModel;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@ApiModel(value = "活动策划大纲生成对象")
|
|
public class ActivityOutlineInputs implements Serializable {
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_theme")
|
|
@JsonAlias("eventTheme")
|
|
private String eventTheme;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("people")
|
|
private String people;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_time")
|
|
@JsonAlias("eventTime")
|
|
private String eventTime;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_funding")
|
|
@JsonAlias("eventFunding")
|
|
private String eventFunding;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_type")
|
|
@JsonAlias("eventType")
|
|
private String eventType;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_location")
|
|
@JsonAlias("eventLocation")
|
|
private String eventLocation;
|
|
|
|
@TableField(exist = false)
|
|
@JsonProperty("event_meme")
|
|
@JsonAlias("eventMeme")
|
|
private String eventMeme;
|
|
}
|