118 changed files with 268 additions and 27 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @ClassName CommonCustomerFormDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2020-08-13 10:03 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CommonCustomerFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -8141450443229290083L; |
||||
|
|
||||
|
public interface CustomerIdGroup extends CustomerClientShowGroup{} |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
* */ |
||||
|
@NotBlank(message = "客户Id不能为空" , groups = CustomerIdGroup.class) |
||||
|
private String customerId; |
||||
|
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue