package com.xcong.excoin.modules.yunding.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
//yd_product矿机产品表
|
@Data
|
@TableName("yd_product")
|
public class YdProductEntity{
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 名称
|
*/
|
|
private String name;
|
|
/**
|
* 编码
|
*/
|
|
private String code;
|
|
/**
|
* 产品总数
|
*/
|
|
private BigDecimal totalT;
|
|
/**
|
* 剩余产品数量
|
*/
|
|
private BigDecimal surplusT;
|
|
/**
|
* 产品售价
|
*/
|
|
private BigDecimal salePrice;
|
|
/**
|
* 服务周期
|
*/
|
|
private Integer proCycle;
|
|
/**
|
* 管理费
|
*/
|
|
private BigDecimal manageExpense;
|
|
/**
|
* 上架天数
|
*/
|
|
private Integer shelvesDays;
|
|
/**
|
* 单位
|
*/
|
|
private String proUnit;
|
|
/**
|
* 产品币种
|
*/
|
|
private String coin;
|
|
/**
|
* 限购
|
*/
|
|
private Integer limitedNum;
|
|
/**
|
* 1:体验 2:正式
|
*/
|
|
private Integer type;
|
|
/**
|
* 产品类型1:期货 2:现货
|
*/
|
|
private Integer typeCoin;
|
|
/**
|
* 优惠 1:免除电费
|
*/
|
|
private Integer favourable;
|
|
/**
|
* 销售状态 1-热售中 2-售罄 3-未开售
|
*/
|
|
private Integer status;
|
|
|
}
|