yaowanxin
2025-08-11 883a4a64a14de0a5476d1955894a9988a5bff1b7
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
package com.ruoyi.equipmentenergyconsumption.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
@Data
@TableName("electricity_consumption_area")
@ApiModel
public class ElectricityConsumptionArea {
 
        @TableId(value = "id", type = IdType.AUTO)
        private Long id;
 
        /**
         * 区域名称
         */
        @ApiModelProperty("区域名称")
        @Excel(name = "区域名称")
        private String areaName;
 
        /**
         * 区域类型
         */
        @ApiModelProperty("区域类型")
        @Excel(name = "区域类型")
        private String areaType;
        /**
         * 排序
         */
        @TableField(fill = FieldFill.INSERT)
        private Long sort;
 
        /**
         * 父类id
         */
        @TableField(fill = FieldFill.INSERT)
        private Long fuId;
        /**
         * 租户id
         */
        @TableField(fill = FieldFill.INSERT)
        private Long tenantId;
}