peng
14 小时以前 4372e6406222ce6b33f8c1c0703b460d39b5814e
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;
}