101captain
2022-03-15 753e4c0b40c52ca8f6804fa0411d0a14cf8fdac6
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;
@@ -38,11 +39,40 @@
     */
    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;
    }
}