2 changed files with 33 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||
|
|
||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 手机号列表 |
||||
|
* |
||||
|
* @author zhy |
||||
|
* @date 2021/6/3 11:01 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class VerifyMobileDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -3243672014476007901L; |
||||
|
|
||||
|
/** |
||||
|
* 名称(手机号) |
||||
|
*/ |
||||
|
private String value; |
||||
|
} |
Loading…
Reference in new issue