5 changed files with 77 additions and 4 deletions
@ -0,0 +1,31 @@ |
|||
package com.epmet.dataaggre.dto.govorg.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/7/29 10:38 |
|||
*/ |
|||
@Data |
|||
public class DataListLeftSubTotalFormDTO { |
|||
public interface AddUserInterGroup{} |
|||
@NotBlank(message = "orgId不能为空",groups = AddUserInterGroup.class) |
|||
private String orgId; |
|||
@NotBlank(message = "orgType不能为空",groups = AddUserInterGroup.class) |
|||
private String orgType; |
|||
|
|||
@NotBlank(message = "coverageType不能为空",groups = AddUserInterGroup.class) |
|||
private String coverageType; |
|||
@NotBlank(message = "categoryKey不能为空",groups = AddUserInterGroup.class) |
|||
private String categoryKey; |
|||
|
|||
private String placeType; |
|||
|
|||
|
|||
private String customerId; |
|||
private String staffId; |
|||
} |
|||
|
@ -0,0 +1,10 @@ |
|||
package com.epmet.dataaggre.dto.govorg.result; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author yzm |
|||
* @Date 2022/7/29 10:45 |
|||
*/ |
|||
public class DataListLeftSubTotalResDTO { |
|||
} |
|||
|
Loading…
Reference in new issue