huanghongfa
2020-12-09 4231221cc96b5a7d192422aee8866e4d87bd3d72
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActMicroWishDO.java
@@ -42,8 +42,9 @@
    /**
     * 状态
     * 状态 1待审核  2待分配 3进行中  4已驳回 5待确认6 已完成
     */
    private boolean status;
    private Integer status;
    /**
     * 集星数
@@ -51,9 +52,9 @@
    private Integer startNum;
    /**
     * 形式
     * 形式  1分配人员  2发起活动
     */
    private String form;
    private Integer form;
    /**
     * 责任人id
@@ -61,14 +62,14 @@
    private Long responsibleId;
    /**
     * 创建开始时间
     * 创建时间
     */
    private Date createBegin;
    private Date createAt;
    /**
     * 创建结束时间
     * 审核时间
     */
    private Date createEnd;
    private Date examineAt;
    /**
     * 评分
@@ -84,5 +85,48 @@
     * 图片路径列表,逗号分隔
     */
    private String photoPathList;
    /**
     * 社区id
     */
    private Long communityId;
    /**
     * 用户评价
     */
    private String evaluate;
    /**
     * 用户评价时间
     */
    private Date evaluateAt;
    /**
     * 心愿完成时间
     */
    private Date finishAt;
    /**
     * 完成情况图片列表,逗号分隔
     */
    private String finishPhotoPathList;
    /**
     * 完成情况描述
     */
    private String finish;
    /**
     * 驳回理由
     */
    private String rejectReason;
    /**
     * 反馈文字
     */
    private String feedback;
    /**
     * 反馈图片集合,逗号分隔
     */
    private String feedbackPhotoPathList;
}