6 changed files with 92 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/5 11:11 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcUserMatchGridFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -5252136149475817567L; |
||||
|
|
||||
|
public interface IcUserMatchGridForm{} |
||||
|
|
||||
|
@NotBlank(message = "idCard不能为空",groups = IcUserMatchGridForm.class) |
||||
|
private String idCard; |
||||
|
|
||||
|
private String customerId; |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/8/5 11:14 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcUserMatchGridResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3215965796907113918L; |
||||
|
|
||||
|
private String gridId; |
||||
|
|
||||
|
private String gridName; |
||||
|
} |
Loading…
Reference in new issue