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