From 8d5fb4ee9d27fd6a61b210eaee74af265f76aa7c Mon Sep 17 00:00:00 2001 From: manailin <261030956@qq.com> Date: 星期五, 08 四月 2022 14:55:18 +0800 Subject: [PATCH] [修改]修改配置 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActEasyPhotoHandler.java | 37 ++++++++++++++++++++++++++++++++++++- 1 files changed, 36 insertions(+), 1 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActEasyPhotoHandler.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActEasyPhotoHandler.java index 45f4433..1dcc924 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActEasyPhotoHandler.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/entity/ComActEasyPhotoHandler.java @@ -1,6 +1,7 @@ package com.panzhihua.service_community.entity; import java.io.Serializable; +import java.util.Date; import lombok.Data; @@ -37,7 +38,41 @@ * 业务类型(1.随手拍 2.微心愿) */ private Integer serviceType; + /** + * 服务状态 0待执行 1已完成 + */ + private Integer status; + /** + * 发起人id + */ + private Long senderId; - + private Date createTime; + /** + * 得分 + */ + private Integer score; + /** + * 汇报内容 + */ + private String resultContent; + /** + * 汇报图片 + */ + private String resultUrl; + /** + * 业务分类(1.随手拍 2.微心愿) + */ + public interface ServiceType{ + int SSP = 1; + int WXY = 2; + } + /** + * 服务状态 0待执行 1已完成 + */ + public interface Status{ + int DZX = 0; + int YWC= 1; + } } -- Gitblit v1.7.1