fhx
2023-08-01 4a3c41eed5a83721ab4bddd104f0a4a25a05b2fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.hz.his.dto.user;
 
import lombok.Data;
 
 
/**人群包查询参数*/
@Data
public class UserPackDto{
 
    /**ciq*/
    private String CIQ;
    /**名称*/
    private String name;
    /**会员号*/
    private String memberNO;
    /**手机号*/
    private String tel;
}