zhouxiang
2022-09-05 f6adad210793ad1942f469bc9a06b44e0537bdae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.hz.his.dto.user;
 
import lombok.Data;
 
/**用户拥有查询实体*/
@Data
public class UserHaveDto {
    /**phis用户标识*/
    private String userId;
 
    /*************优惠券查询参数******************/
    /**是否有效*/
    private Integer validState;
    /**是否过期*/
    private Integer isExpired;
    /**是否使用*/
    private Integer isUse;
    /**平台*/
    private String platform;
 
    /************预约查询参数***************************/
    /**是否到店*/
    private Integer isArrive;
 
    /************项目查询参数**************************/
    /**是否服务*/
    private Integer isService;
}