From edf2bc6f41c9784e9cdccc9b569a7091a5a5a438 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期五, 23 九月 2022 16:10:07 +0800 Subject: [PATCH] Merge branch 'zigonggao_dev' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into huacheng_test --- flower_city/src/main/java/com/dg/core/db/gen/entity/Agreement.java | 88 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 88 insertions(+), 0 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/db/gen/entity/Agreement.java b/flower_city/src/main/java/com/dg/core/db/gen/entity/Agreement.java new file mode 100644 index 0000000..9fcc6f6 --- /dev/null +++ b/flower_city/src/main/java/com/dg/core/db/gen/entity/Agreement.java @@ -0,0 +1,88 @@ +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-09-22 + */ +@TableName("automessage_agreement") +@Data +@ApiModel("相关协议实体类") +public class Agreement implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + @ApiModelProperty("主键id") + @TableId(value = "id", type = IdType.AUTO) + private Integer id; + + /** + * 协议名称 + */ + @ApiModelProperty("协议名称") + private String agreement; + + /** + * 修改人id + */ + @ApiModelProperty("修改人id") + private String updateUserId; + + /** + * 修改时间 + */ + @ApiModelProperty("修改时间") + private LocalDateTime updateTime; + + /** + * 创建时间 + */ + @ApiModelProperty("创建时间") + private LocalDateTime createTime; + + /** + * 创建人id + */ + @ApiModelProperty("创建人id") + private String createUserId; + + /** + * 协议内容 + */ + @ApiModelProperty("协议内容") + private String agreementContent; + + /** + * 上次修改人名称 + */ + @TableField(exist = false) + @ApiModelProperty("上次修改人名称") + private String updateUserName; + + /** + * 创建人名称 + */ + @TableField(exist = false) + @ApiModelProperty("创建人名称") + private String createUserName; + + + +} -- Gitblit v1.7.1