10 changed files with 213 additions and 4 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/7/19 16:34 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ServiceRecordV2DetailFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 476430342315532314L; |
||||
|
|
||||
|
public interface ServiceRecordV2DetailForm{} |
||||
|
|
||||
|
@NotBlank(message = "serviceRecordId不能为空",groups = ServiceRecordV2DetailForm.class) |
||||
|
private String serviceRecordId; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,71 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import com.epmet.dto.IcServiceFeedbackV2DTO; |
||||
|
import com.epmet.dto.IcServiceScopeV2DTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/7/19 16:34 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ServiceRecordV2DetailResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 3385425608362604836L; |
||||
|
|
||||
|
private String serviceRecordId; |
||||
|
|
||||
|
private String serviceName; |
||||
|
|
||||
|
/** |
||||
|
* 服务组织类型 |
||||
|
社区自组织:community_org, |
||||
|
志愿者:ic_user_volunteer, |
||||
|
联建单位:party_unit |
||||
|
*/ |
||||
|
private String serviceOrgType; |
||||
|
|
||||
|
/** |
||||
|
* 服务组织ID |
||||
|
*/ |
||||
|
private String serviceOrgId; |
||||
|
|
||||
|
/** |
||||
|
* 经办人姓名 |
||||
|
*/ |
||||
|
private String principalName; |
||||
|
|
||||
|
/** |
||||
|
* 联系方式 |
||||
|
*/ |
||||
|
private String principalContact; |
||||
|
|
||||
|
/** |
||||
|
* 服务时间 |
||||
|
*/ |
||||
|
private Date serviceTimeStart; |
||||
|
|
||||
|
/** |
||||
|
* 服务截止时间 |
||||
|
*/ |
||||
|
private Date serviceTimeEnd; |
||||
|
|
||||
|
/** |
||||
|
* in_service服务中;completed:已完成;cancel:取消 |
||||
|
*/ |
||||
|
private String serviceStatus; |
||||
|
|
||||
|
/** |
||||
|
* 备注 |
||||
|
*/ |
||||
|
private String remark; |
||||
|
|
||||
|
private List<IcServiceScopeV2DTO> gridIdList; |
||||
|
|
||||
|
private IcServiceFeedbackV2DTO feedback; |
||||
|
} |
Loading…
Reference in new issue