Helius
2021-06-29 5252d1396e21a16774be699a5ba1c8d39c14a22e
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
package com.xzx.gc.entity;
 
import lombok.Data;
 
import javax.persistence.Table;
 
@Table(name = "core_set_money")
@Data
public class CoreSetMoney extends BaseEntity{
 
    // 开始时间
   private String startTime;
    // 结束时间
    private String endTime;
    // 时间间隔
    private String timeInterval;
    // 代丢价格
    private String agentPrice;
 
    // 透支额度
    private String overdrawPrice;
    // 充值金额
    private String rechargePrice;
 
    /**
     * 订单数量
     */
    private String orderTotal;
    /**
     * 订单超时时间
     */
    private String orderTimeout;
 
    // 入库员透支额度
    private String warehousingPrice;
 // 可见数目
    transient String orderViewNum;
 
}