Commit efd8d113 authored by liwei's avatar liwei

修改了app的banner查询

parent 9d6de177
...@@ -20,74 +20,6 @@ import java.util.Date; ...@@ -20,74 +20,6 @@ import java.util.Date;
@Data @Data
@TableName("cms_notice") @TableName("cms_notice")
public class CmsNotice extends CyIdIncreEntity<CmsNotice> { public class CmsNotice extends CyIdIncreEntity<CmsNotice> {
/**
* @desc 创建人
* @column create_by
* @default
*/
@Excel(name = "创建人")
@TableField("create_by")
private String createBy;
/**
* @desc 创建时间
* @column create_date
* @default
*/
@Excel(name = "创建时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@TableField("create_date")
private Date createDate;
/**
* @desc 更新人
* @column update_by
* @default
*/
@Excel(name = "更新人")
@TableField("update_by")
private String updateBy;
/**
* @desc 更新时间
* @column update_date
* @default
*/
@Excel(name = "更新时间")
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
@TableField("update_date")
private Date updateDate;
/**
* @desc 备注
* @column remarks
* @default
*/
@JsonIgnore
@Excel(name = "备注")
@TableField("remarks")
private String remarks;
/**
* @desc 启动状态(0禁用、1启动)
* @column flag
* @default
*/
@Excel(name = "启动状态(0禁用、1启动)")
@TableField("flag")
private String flag;
/**
* @desc 删除标志(0删除,1已删除)
* @column del_flag
* @default
*/
@Excel(name = "删除标志(0删除,1已删除)")
@TableField("del_flag")
private String delFlag;
/** /**
* @desc 标题 * @desc 标题
* @column title * @column title
...@@ -174,8 +106,6 @@ public class CmsNotice extends CyIdIncreEntity<CmsNotice> { ...@@ -174,8 +106,6 @@ public class CmsNotice extends CyIdIncreEntity<CmsNotice> {
@TableField(exist = false) @TableField(exist = false)
private String url; private String url;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment