admin
2024-08-04 bc56870059cca013649077af0e53891cba8dbfd1
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package com.taoke.autopay.vo.admin;
 
import com.taoke.autopay.entity.ClientInfo;
 
import java.util.Date;
 
/**
 * @author hxh
 * @title: AdminOrderVO
 * @description: 后台订单信息
 * @date 2024/6/29 19:49
 */
public class AdminOrderVO {
    private String id;
    private Long uid;
    private String key;
    private int state;
    private String stateDesc;
    private String orderStateDesc;
    private Integer orderType;
    private String orderNo;
    private ClientInfo distributedClientInfo;
    private Date distributedTime;
    private Date createTime;
    private Date excutePayTime;
    private Date payTime;
    private String agent;
    private String orderChannel;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Long getUid() {
        return uid;
    }
 
    public void setUid(Long uid) {
        this.uid = uid;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public int getState() {
        return state;
    }
 
    public void setState(int state) {
        this.state = state;
    }
 
    public String getStateDesc() {
        return stateDesc;
    }
 
    public void setStateDesc(String stateDesc) {
        this.stateDesc = stateDesc;
    }
 
    public String getOrderStateDesc() {
        return orderStateDesc;
    }
 
    public void setOrderStateDesc(String orderStateDesc) {
        this.orderStateDesc = orderStateDesc;
    }
 
    public Integer getOrderType() {
        return orderType;
    }
 
    public void setOrderType(Integer orderType) {
        this.orderType = orderType;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public ClientInfo getDistributedClientInfo() {
        return distributedClientInfo;
    }
 
    public void setDistributedClientInfo(ClientInfo distributedClientInfo) {
        this.distributedClientInfo = distributedClientInfo;
    }
 
    public Date getDistributedTime() {
        return distributedTime;
    }
 
    public void setDistributedTime(Date distributedTime) {
        this.distributedTime = distributedTime;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getExcutePayTime() {
        return excutePayTime;
    }
 
    public void setExcutePayTime(Date excutePayTime) {
        this.excutePayTime = excutePayTime;
    }
 
    public Date getPayTime() {
        return payTime;
    }
 
    public void setPayTime(Date payTime) {
        this.payTime = payTime;
    }
 
    public String getAgent() {
        return agent;
    }
 
    public void setAgent(String agent) {
        this.agent = agent;
    }
 
    public String getOrderChannel() {
        return orderChannel;
    }
 
    public void setOrderChannel(String orderChannel) {
        this.orderChannel = orderChannel;
    }
}