fhx
2023-08-01 4a3c41eed5a83721ab4bddd104f0a4a25a05b2fc
提交 | 用户 | age
f5bce1 1 package com.hz.his.dto.user.card;
F 2
3 import com.hz.his.dto.PageDto;
4 import lombok.Data;
5
6 /**
db128c 7  * 用户卡项
f5bce1 8  * @author fwq
F 9  * */
10 @Data
11 public class UserCardDto extends PageDto {
12     /**phis用户标识*/
13     private String userId;
14     /**卡项标识*/
15     private String cardItemId;
16     /**子订单编号*/
17     private String orderItemNo;
18     /**有效状态:1有效2无效3已使用4过期无效5已取消*/
19     private Integer effectiveStatus;
20     /**状态:0未使用1已使用2转赠3使用中*/
21     private Integer status;
22     /**有效开始*/
23     private String effectiveStartTime;
24     /**有效结束*/
25     private String effectiveEndTime;
4836b7 26     /**是否SPA(0:否,1:是)*/
a7cfb6 27     private Integer isSpa;
4836b7 28     /**是否失效:0否1是,失效对应有效状态的4和5*/
F 29     private Integer isInvalid;
a7cfb6 30
f5bce1 31 }
F 32
33