renkang
2 天以前 4a99240038013c7d962040e6f8eabd2d72095fd7
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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;
}