chenjiahe
2022-07-13 7c680b3e59d8b46fa4797f283101476917fa44c6
提交 | 用户 | age
7c680b 1 package com.hz.phis.dt.user.card;
C 2
3 import com.hz.his.dto.PageDto;
4
5 /**
6  * 用户项目扩展
7  * @author fwq
8  * */
9 public class UserCardDt extends PageDto {
10     /**phis用户标识*/
11     private String userId;
12     /**卡项标识*/
13     private String cardItemId;
14     /**子订单编号*/
15     private String orderItemNo;
16     /**有效状态:1有效2无效3已使用4过期无效5已取消*/
17     private Integer effectiveStatus;
18     /**状态:0未使用1已使用2转赠3使用中*/
19     private Integer status;
20     /**有效开始*/
21     private String effectiveStartTime;
22     /**有效结束*/
23     private String effectiveEndTime;
24
25     public String getUserId() {
26         return userId;
27     }
28
29     public void setUserId(String userId) {
30         this.userId = userId;
31     }
32
33     public String getCardItemId() {
34         return cardItemId;
35     }
36
37     public void setCardItemId(String cardItemId) {
38         this.cardItemId = cardItemId;
39     }
40
41     public String getOrderItemNo() {
42         return orderItemNo;
43     }
44
45     public void setOrderItemNo(String orderItemNo) {
46         this.orderItemNo = orderItemNo;
47     }
48
49     public Integer getEffectiveStatus() {
50         return effectiveStatus;
51     }
52
53     public void setEffectiveStatus(Integer effectiveStatus) {
54         this.effectiveStatus = effectiveStatus;
55     }
56
57     public Integer getStatus() {
58         return status;
59     }
60
61     public void setStatus(Integer status) {
62         this.status = status;
63     }
64
65     public String getEffectiveStartTime() {
66         return effectiveStartTime;
67     }
68
69     public void setEffectiveStartTime(String effectiveStartTime) {
70         this.effectiveStartTime = effectiveStartTime;
71     }
72
73     public String getEffectiveEndTime() {
74         return effectiveEndTime;
75     }
76
77     public void setEffectiveEndTime(String effectiveEndTime) {
78         this.effectiveEndTime = effectiveEndTime;
79     }
80 }
81
82