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;
|
|
}
|