1 changed files with 58 additions and 0 deletions
			
			
		| @ -0,0 +1,58 @@ | |||
| package com.epmet.dataaggre.dto.datastats.form; | |||
| 
 | |||
| import lombok.Data; | |||
| 
 | |||
| import javax.validation.constraints.NotBlank; | |||
| import java.io.Serializable; | |||
| 
 | |||
| /** | |||
|  * @Author zxc | |||
|  * @DateTime 2021/9/10 11:04 上午 | |||
|  * @DESC | |||
|  */ | |||
| @Data | |||
| public class CustomerDataManageFormDTO implements Serializable { | |||
| 
 | |||
|     private static final long serialVersionUID = 6462094914874831738L; | |||
| 
 | |||
|     public interface CustomerDataManageForm{} | |||
| 
 | |||
|     /** | |||
|      * 客户ID | |||
|      */ | |||
|     @NotBlank(message = "客户ID不能为空",groups = CustomerDataManageForm.class) | |||
|     private String customerId; | |||
| 
 | |||
|     /** | |||
|      * 组织ID | |||
|      */ | |||
|     @NotBlank(message = "组织ID不能为空",groups = CustomerDataManageForm.class) | |||
|     private String agencyId; | |||
| 
 | |||
|     /** | |||
|      * 区间:Interval  截止:end | |||
|      */ | |||
|     @NotBlank(message = "type不能为空",groups = CustomerDataManageForm.class) | |||
|     private String type; | |||
| 
 | |||
|     /** | |||
|      * 开始时间【yyyymmdd】 | |||
|      */ | |||
|     private String startTime; | |||
| 
 | |||
|     /** | |||
|      * 结束时间【yyyymmdd】 | |||
|      */ | |||
|     @NotBlank(message = "结束时间不能为空",groups = CustomerDataManageForm.class) | |||
|     private String endTime; | |||
| 
 | |||
|     private Integer pageNo; | |||
| 
 | |||
|     private Integer pageSize; | |||
| 
 | |||
|     /** | |||
|      * 是否分页【true分  false不分】 | |||
|      */ | |||
|     @NotBlank(message = "是否分页不能为空",groups = CustomerDataManageForm.class) | |||
|     private Boolean isPage; | |||
| } | |||
					Loading…
					
					
				
		Reference in new issue