zxl
2025-07-24 f7e2789a576b2db4217d20d5cfdeb20249c83a5b
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;
}