wangrenhuang
2022-08-29 93781c5ba334f3b1b606d7427f5433676d09af3c
提交 | 用户 | 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 /**
7  * 用户项目扩展
8  * @author fwq
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;
26 }
27
28