| | |
| | | package com.panzhihua.service_community.entity; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | import lombok.Data; |
| | | |
| | |
| | | */ |
| | | 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; |
| | | } |
| | | } |
| | | |