|
|
@ -3,6 +3,7 @@ package com.epmet.dataaggre.dto.datastats.form; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank; |
|
|
|
import javax.validation.constraints.NotNull; |
|
|
|
import java.io.Serializable; |
|
|
|
|
|
|
|
/** |
|
|
@ -53,6 +54,6 @@ public class CustomerDataManageFormDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 是否分页【true分 false不分】 |
|
|
|
*/ |
|
|
|
@NotBlank(message = "是否分页不能为空",groups = CustomerDataManageForm.class) |
|
|
|
@NotNull(message = "是否分页不能为空",groups = CustomerDataManageForm.class) |
|
|
|
private Boolean isPage; |
|
|
|
} |
|
|
|