Administrator
2024-07-03 dc8008be8836c212f17fa29df7eac52a8fe716c4
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
package com.dy.pipIrrGlobal.voSe;
 
import com.dy.common.po.BaseEntity;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @author :WuZeYu
 * @Date :2024/6/17  11:24
 * @LastEditTime :2024/6/17  11:24
 * @Description
 */
@Data
public class VoVcRecharge implements BaseEntity {
 
    @Schema(title = "充值ID")
    private Long id;
 
    @Schema(description = "虚拟卡ID")
    private Long vcId;
 
    @Schema(description = "农户ID")
    private Long clientId;
 
 
    @Schema(description = "钱包余额")
    private Double money;
 
    @Schema(description = "充值后余额")
    private Double afterRecharge;
 
    @Schema(description = "订单号")
    private String orderNumber;
 
    @Schema(description = "充值金额")
    private Integer rechargeAmount;
 
    @Schema(description = "下单时间")
    private Date orderTime;
 
    @Schema(description = "充值完成时间")
    private Date rechargeTime;
 
    @Schema(description = "订单状态")
    private Byte orderState;
 
    @Schema(description = "订单状态")
    private String orderStateName;
}