Helius
2022-03-09 38179780b2f728abe6dd0e5aaa284c6ee6aa8380
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
package com.xcong.excoin.modules.otc.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
@ApiModel(value = "ChatOrderVo", description = "返回参数类")
public class ChatOrderVo {
 
    /**
     * 订单编号
     */
 
    @ApiModelProperty(value = "订单编号")
    private String orderNo;
 
    private Long memberId;
 
    /**
     * 单价
     */
 
    @ApiModelProperty(value = "单价")
    private BigDecimal unitPrice;
 
    /**
     * 数量
     */
 
    @ApiModelProperty(value = "数量")
    private BigDecimal usdtAmount;
 
    /**
     * 总额
     */
 
    @ApiModelProperty(value = "总额")
    private BigDecimal totalAmount;
 
    /**
     * 订单状态 1-已提交未付款2-已付款3-已完成
     */
 
    @ApiModelProperty(value = "订单状态 1-已提交未付款2-已付款3-已完成4-已取消")
    private Integer status;
    public static final Integer STATUS_SUBMIT = 1;
    public static final Integer STATUS_PAY = 2;
    public static final Integer STATUS_FINISH = 3;
    public static final Integer STATUS_CANCEL = 4;
 
 
    /**
     * 订单类型 B-买 S-卖
     */
 
    @ApiModelProperty(value = "订单类型 B-买 S-卖")
    private String orderType;
}