9 changed files with 90 additions and 4 deletions
@ -0,0 +1,21 @@ |
|||||
|
package com.epmet.dto.form.demand; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.Set; |
||||
|
|
||||
|
@Data |
||||
|
public class UserDemandNameQueryFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1562457999313501989L; |
||||
|
|
||||
|
public interface AddUserInternalGroup {} |
||||
|
|
||||
|
@NotBlank(message = "客户idbu不能为空",groups =AddUserInternalGroup.class) |
||||
|
private String customerId; |
||||
|
|
||||
|
@NotEmpty(message = "分类编码不能为空",groups =AddUserInternalGroup.class) |
||||
|
private Set<String> codeSet; |
||||
|
} |
Loading…
Reference in new issue