|
@@ -1,55 +1,64 @@
|
|
|
package cn.com.ctop.kuaishou.modules.batch.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
import lombok.experimental.Accessors;
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
-import org.springframework.format.annotation.DateTimeFormat;
|
|
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @Description: 快手-行动号召文案
|
|
|
* @Author: jeecg-boot
|
|
|
- * @Date: 2019-08-15
|
|
|
+ * @Date: 2019-08-15
|
|
|
* @Version: V1.0
|
|
|
*/
|
|
|
@Data
|
|
|
@TableName("ctop_kuaishou_action_bar_text")
|
|
|
@EqualsAndHashCode(callSuper = false)
|
|
|
@Accessors(chain = true)
|
|
|
-@ApiModel(value="ctop_kuaishou_action_bar_text对象", description="快手-行动号召文案")
|
|
|
+@ApiModel(value = "ctop_kuaishou_action_bar_text对象", description = "快手-行动号召文案")
|
|
|
public class KuaiShouActionBarText {
|
|
|
-
|
|
|
- /**id*/
|
|
|
- @TableId(type = IdType.UUID)
|
|
|
+
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
@ApiModelProperty(value = "id")
|
|
|
- private Integer id;
|
|
|
- /**类型*/
|
|
|
- @Excel(name = "类型", width = 15)
|
|
|
+ private Integer id;
|
|
|
+ /**
|
|
|
+ * 类型
|
|
|
+ */
|
|
|
+ @Excel(name = "类型", width = 15)
|
|
|
@ApiModelProperty(value = "类型")
|
|
|
- private Integer type;
|
|
|
- /**行动号召文案*/
|
|
|
- @Excel(name = "行动号召文案", width = 15)
|
|
|
+ private Integer type;
|
|
|
+ /**
|
|
|
+ * 行动号召文案
|
|
|
+ */
|
|
|
+ @Excel(name = "行动号召文案", width = 15)
|
|
|
@ApiModelProperty(value = "行动号召文案")
|
|
|
- private String actionBarText;
|
|
|
- /**创建时间*/
|
|
|
- @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private String actionBarText;
|
|
|
+ /**
|
|
|
+ * 创建时间
|
|
|
+ */
|
|
|
+ @Excel(name = "创建时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "创建时间")
|
|
|
- private Date createTime;
|
|
|
- /**修改时间*/
|
|
|
- @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
- @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ private Date createTime;
|
|
|
+ /**
|
|
|
+ * 修改时间
|
|
|
+ */
|
|
|
+ @Excel(name = "修改时间", width = 20, format = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
@ApiModelProperty(value = "修改时间")
|
|
|
- private Date updateTime;
|
|
|
+ private Date updateTime;
|
|
|
}
|