From 84b51d9bfddcc8da58823fde1b322a8168db5cff Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期五, 27 五月 2022 09:35:23 +0800 Subject: [PATCH] bug修改 --- springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActEasyPhotoVO.java | 25 ++++++++++++++++++++++++- 1 files changed, 24 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActEasyPhotoVO.java b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActEasyPhotoVO.java index a3a32e1..5346385 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActEasyPhotoVO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActEasyPhotoVO.java @@ -8,6 +8,7 @@ import javax.validation.constraints.NotBlank; import com.fasterxml.jackson.annotation.JsonFormat; +import com.panzhihua.common.model.vos.common.ComActEasyPhotoEvaluateVo; import com.panzhihua.common.validated.AddGroup; import io.swagger.annotations.ApiModel; @@ -43,7 +44,7 @@ @ApiModelProperty("发起人头像") private String imageUrl; - @ApiModelProperty("状态 1待审核 2进行中 3已驳回 4已完成") + @ApiModelProperty("状态 1待审核 2进行中 3已驳回 4待评价 5.已完成") private Integer status; @ApiModelProperty("处理人id") @@ -201,4 +202,26 @@ int yes = 1; int ret = 2; } + @ApiModelProperty(value = "单张图片宽度") + private BigDecimal imgWidth; + + @ApiModelProperty(value = "单张图片高度") + private BigDecimal imgHeight; + + @ApiModelProperty(value = "评价时间") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") + private Date evaluateDate; + + @ApiModelProperty(value = "评价分数") + private Integer score; + + @ApiModelProperty(value = "评价内容") + private String content; + + @ApiModelProperty(value = "评价记录") + private List<ComActEasyPhotoEvaluateVo> evaluateList; + + @ApiModelProperty(value = "微心愿分配人员集合") + private List<ComActMicroWishHandleVO> handleList; + } -- Gitblit v1.7.1