admin
2024-09-27 17caebabf7a6a529b7039c71e21e5a324e31ea20
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
package com.taoke.autopay.vo.admin;
 
import com.taoke.autopay.entity.ClientInfo;
import lombok.Builder;
import lombok.Data;
import lombok.experimental.Tolerate;
 
import java.util.Date;
 
/**
 * @author hxh
 * @title: AdminOrderVO
 * @description: 后台订单信息
 * @date 2024/6/29 19:49
 */
@Data
@Builder
public class AdminOrderVO {
 
    @Tolerate
    public 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;
    private String payMerchant;
}