fhx
2024-04-09 c0ad40fda3f99662380409c426eaecf16153096c
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;
}