package com.doumee.dao.business.model;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.doumee.core.annotation.excel.ExcelColumn;
|
import com.doumee.core.model.LoginUserModel;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import java.util.Date;
|
import java.math.BigDecimal;
|
/**
|
* 电表参数Model定义
|
*/
|
@Data
|
@TableName("yw_electrical_param")
|
@ApiModel(value = "电表参数实体类")
|
public class YwElectricalParam extends LoginUserModel {
|
|
@ApiModelProperty("配置名称关键字(查询用)")
|
@TableField(exist = false)
|
private String nameKeyword;
|
|
@ApiModelProperty("主键")
|
@ExcelColumn(name="主键",index=1 ,width=10)
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
@ApiModelProperty("创建人编码")
|
@ExcelColumn(name="创建人编码",index=2 ,width=10)
|
private Integer creator;
|
@ApiModelProperty("创建时间")
|
@ExcelColumn(name="创建时间",index=3 ,width=10)
|
private Date createDate;
|
@ApiModelProperty("更新人编码")
|
@ExcelColumn(name="更新人编码",index=4 ,width=10)
|
private Integer edirot;
|
@ApiModelProperty("更新时间")
|
@ExcelColumn(name="更新时间",index=5 ,width=10)
|
private Date editDate;
|
@ApiModelProperty("是否删除0否 1是")
|
@ExcelColumn(name="是否删除0否 1是",index=6 ,width=10)
|
private Integer isdeleted;
|
@ApiModelProperty("备注")
|
@ExcelColumn(name="备注",index=7 ,width=10)
|
private String remark;
|
@ApiModelProperty("名称")
|
@ExcelColumn(name="名称",index=8 ,width=10)
|
private String name;
|
@ApiModelProperty("透支金额(元)")
|
@ExcelColumn(name="透支金额(元)",index=9 ,width=10)
|
private BigDecimal tzMoney;
|
@ApiModelProperty("一级报警金额(元)")
|
@ExcelColumn(name="一级报警金额(元)",index=10 ,width=10)
|
private BigDecimal yjbjMoney;
|
@ApiModelProperty("二级报警金额(元)")
|
@ExcelColumn(name="二级报警金额(元)",index=11 ,width=10)
|
private BigDecimal ejbjMoney;
|
@ApiModelProperty("负荷限制功率(KW)")
|
@ExcelColumn(name="负荷限制功率(KW)",index=12 ,width=10)
|
private BigDecimal limitFhgl;
|
@ApiModelProperty("超负荷延时间(分钟)")
|
@ExcelColumn(name="超负荷延时间(分钟)",index=13 ,width=10)
|
private Integer limitFhTime;
|
@ApiModelProperty("电价(元)")
|
@ExcelColumn(name="电价(元)",index=14 ,width=10)
|
private BigDecimal price;
|
@ApiModelProperty("状态:0=正常;1=禁用")
|
@ExcelColumn(name="状态:0=正常;1=禁用",index=15 ,width=10)
|
private Integer status;
|
@ApiModelProperty("基础电价(元)")
|
@ExcelColumn(name="基础电价(元)",index=16 ,width=10)
|
private BigDecimal basePrice;
|
@ApiModelProperty("附加单价(元)")
|
@ExcelColumn(name="附加单价(元)",index=17 ,width=10)
|
private BigDecimal extraPrice;
|
}
|