peng
4 天以前 9d54d50c7beb2e6f0baee23ad0d536eb53d89eec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.lili.modules.lmk.domain.query;
 
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
/**
 * 店员电话有效性检测参数
 *
 */
@Data
@ApiModel(value = "店员电话有效性检测参数", description = "店员电话有效性检测参数")
public class CheckClerkMobileQuery {
 
    private  String mobile;
 
    private  String memberId;
}