Helius
2021-06-16 5728be2af515b2200e782aa201ca5d4d67d9ea47
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
package com.ibeetl.admin.core.entity;
 
import lombok.Data;
 
@Data
public class CoreSetMoney extends BaseEntity{
 
    // 开始时间
    String startTime;
    // 结束时间
    String endTime;
    // 时间间隔
    String timeInterval;
    // 代丢价格
    String agentPrice;
 
    // 透支额度
    String overdrawPrice;
    // 充值金额
    String rechargePrice;
 
    /**
     * 订单数量
     */
    String orderTotal;
    /**
     * 订单超时时间
     */
    String orderTimeout;
 
    // 入库员透支额度
    String warehousingPrice;
 
}