From 3940e5ebf6a2fecca5fc75c9e5d8a325c5842681 Mon Sep 17 00:00:00 2001 From: zhaozhengjie <237651143@qq.com> Date: 星期日, 09 十月 2022 14:00:21 +0800 Subject: [PATCH] Merge branch 'huacheng_test' of http://gitlab.nhys.cdnhxx.com/root/zhihuishequ into huacheng_test --- flower_city/src/main/java/com/dg/core/db/gen/entity/GuideEvolveEntity.java | 31 +++++++++++++++++++++++++++++++ 1 files changed, 31 insertions(+), 0 deletions(-) diff --git a/flower_city/src/main/java/com/dg/core/db/gen/entity/GuideEvolveEntity.java b/flower_city/src/main/java/com/dg/core/db/gen/entity/GuideEvolveEntity.java index 793f30f..3e6481a 100644 --- a/flower_city/src/main/java/com/dg/core/db/gen/entity/GuideEvolveEntity.java +++ b/flower_city/src/main/java/com/dg/core/db/gen/entity/GuideEvolveEntity.java @@ -1,6 +1,7 @@ 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 com.fasterxml.jackson.annotation.JsonFormat; @@ -12,6 +13,7 @@ import java.io.Serializable; import java.time.LocalDateTime; +import java.util.List; @Data @ApiModel("导办工单进展记录表") @@ -107,4 +109,33 @@ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDateTime updateTime; + + /** + * 视频url + */ + @ApiModelProperty(name = "videoUrl", value = "视频url") + private String videoUrl; + + /** + * 图片url + */ + @ApiModelProperty(name = "pictureUrl", value = "图片url") + private String pictureUrl; + + @TableField(exist = false) + @ApiModelProperty(name = "toUserName", value = "发起人名字") + private String toUserName; + + @TableField(exist = false) + @ApiModelProperty(name = "toUserName", value = "接收人名字") + private String fromUserName; + + @TableField(exist = false) + @ApiModelProperty(name = "elseAccessoryEntities", value = "其他附件列表") + private List<ElseAccessoryEntity> elseAccessoryEntities; + + @TableField(exist = false) + @ApiModelProperty(name = "transactionEvents", value = "推荐办事指南列表") + private List<TransactionEvent> transactionEvents; + } -- Gitblit v1.7.1