admin
2024-07-27 65aaf1c05bd06cefa82ebc40cc3e01cf4ac233c0
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
package com.taoke.autopay.entity.agent;
 
import lombok.Data;
import org.springframework.data.annotation.Id;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
import java.math.BigDecimal;
import java.util.Date;
 
/**
 * @author hxh
 * @title: ChannelAgentOrderPayRecord
 * @description: 渠道订单支付记录
 * @date 2024/7/24 18:13
 */
@Data
@Table(value="table_agent_order_statistic_record")
public class ChannelAgentOrderStatisticRecord {
    @Id
    @Column(name = "_id")
    private Long id;
    /**
     * 代理ID
     **/
    @Column(name = "_agent_id")
    private Long agentId;
    /**
     * 日期
     **/
    @Column(name = "_day")
    private String day;
    /**
     * 提交的口令次数
     **/
    @Column(name = "_submit_key_count")
    private Integer submitKeyCount;
    /**
     * 支付次数
     **/
    @Column(name = "_pay_count")
    private Integer payCount;
    /**
     * 支付的金額
     **/
    @Column(name = "_pay_money")
    private BigDecimal payMoney;
    @Column(name = "_create_time")
    private Date createTime;
    @Column(name = "_update_time")
    private Date updateTime;
}