forked from luyan/epmet-cloud-lingshan
				
			
				 9 changed files with 182 additions and 0 deletions
			
			
		| @ -0,0 +1,86 @@ | |||
| package com.epmet.dto.form; | |||
| 
 | |||
| import com.epmet.dto.IcPartyServiceCenterMatterDTO; | |||
| import lombok.Data; | |||
| 
 | |||
| import javax.validation.constraints.NotBlank; | |||
| import java.io.Serializable; | |||
| import java.util.List; | |||
| 
 | |||
| /** | |||
|  * @Author zxc | |||
|  * @DateTime 2021/11/22 9:05 上午 | |||
|  * @DESC | |||
|  */ | |||
| @Data | |||
| public class EditPartyServiceCenterFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = -231856877756036529L; | |||
| 
 | |||
|     public interface EditPartyServiceCenterForm{} | |||
| 
 | |||
|     /** | |||
|      * 中心名称 | |||
|      */ | |||
|     @NotBlank(message = "centerName不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String centerName; | |||
| 
 | |||
|     /** | |||
|      * 社区地址 | |||
|      */ | |||
|     @NotBlank(message = "address不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String address; | |||
| 
 | |||
|     /** | |||
|      * 办公电话 | |||
|      */ | |||
|     @NotBlank(message = "workPhone不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String workPhone; | |||
| 
 | |||
|     /** | |||
|      * 上午开始时间 | |||
|      */ | |||
|     @NotBlank(message = "amStartTime不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String amStartTime; | |||
| 
 | |||
|     /** | |||
|      * 上午结束时间 | |||
|      */ | |||
|     @NotBlank(message = "amEndTime不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String amEndTime; | |||
| 
 | |||
|     /** | |||
|      * 下午开始时间 | |||
|      */ | |||
|     @NotBlank(message = "pmStartTime不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String pmStartTime; | |||
| 
 | |||
|     /** | |||
|      * 下午结束时间 | |||
|      */ | |||
|     @NotBlank(message = "pmEndTime不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String pmEndTime; | |||
| 
 | |||
|     /** | |||
|      * 经度 | |||
|      */ | |||
|     @NotBlank(message = "longitude不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String longitude; | |||
| 
 | |||
|     /** | |||
|      * 纬度 | |||
|      */ | |||
|     @NotBlank(message = "latitude不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String latitude; | |||
| 
 | |||
|     /** | |||
|      * 党群服务中心ID | |||
|      */ | |||
|     @NotBlank(message = "partyServiceCenterId不能为空",groups = EditPartyServiceCenterForm.class) | |||
|     private String partyServiceCenterId; | |||
| 
 | |||
|     /** | |||
|      * 可预约事项 | |||
|      */ | |||
|     private List<IcPartyServiceCenterMatterDTO> matterList; | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue