From 7a8e31ceb01c7eb27d90197ec91efdfce4bedb41 Mon Sep 17 00:00:00 2001 From: 张天森 <1292933220@qq.com> Date: 星期三, 16 十一月 2022 18:00:39 +0800 Subject: [PATCH] Merge branch 'huacheng_test' into haucheng_panzhihua --- flower_city/src/main/java/com/dg/core/db/gen/entity/AutomessagePolicyDocuments.java | 121 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 121 insertions(+), 0 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/db/gen/entity/AutomessagePolicyDocuments.java b/flower_city/src/main/java/com/dg/core/db/gen/entity/AutomessagePolicyDocuments.java new file mode 100644 index 0000000..7e1d00e --- /dev/null +++ b/flower_city/src/main/java/com/dg/core/db/gen/entity/AutomessagePolicyDocuments.java @@ -0,0 +1,121 @@ +package com.dg.core.db.gen.entity; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +import java.io.Serializable; +import java.time.LocalDateTime; + +/** + * <p> + * 法律法规政策文件实体类 + * </p> + * + * @author fengjin + * @since 2022-11-10 + */ +@TableName("automessage_policy_documents") +@Data +@ApiModel("法律法规政策文件实体类") +public class AutomessagePolicyDocuments implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键id + */ + @ApiModelProperty("主键") + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 部门id + */ + @ApiModelProperty("部门id") + private Integer departmentId; + + /** + * 名称 + */ + @ApiModelProperty("名称") + private String name; + + /** + * 跳转链接类型(1.富文本2.微信文章) + */ + @ApiModelProperty(" 跳转链接类型(1.富文本2.微信文章)") + private String linkType; + + /** + * 文章链接 + */ + @ApiModelProperty("文章链接") + private String articleLink; + + /** + * 文章富文本 + */ + @ApiModelProperty("文章富文本") + private String richText; + + /** + * 类型(1.法律法规2.政策文件) + */ + @ApiModelProperty("类型(1.法律法规2.政策文件)") + private Integer type; + + /** + * 创建时间 + */ + @ApiModelProperty("创建时间") + private LocalDateTime createTime; + + /** + * 创建人 + */ + @ApiModelProperty("创建人") + private String createUserId; + + /** + * 修改时间 + */ + @ApiModelProperty("修改时间") + private LocalDateTime updateTime; + + + /** + * 修改人 + */ + @ApiModelProperty("修改人") + private String updateUserId; + + /** + * 部门名称 + */ + @TableField(exist = false) + @ApiModelProperty("部门名称") + private String departmentName; + + /** + * 修改人名称 + */ + @TableField(exist = false) + @ApiModelProperty("修改人名称") + private String updateUserName; + + /** + * 创建人名称 + */ + @TableField(exist = false) + @ApiModelProperty("创建人名称") + private String createUserName; + + @TableField(exist = false) + @ApiModelProperty("是否能够删除1.可以删除修改 2.不能删除修改") + private Integer isDelete; +} -- Gitblit v1.7.1