ustcyc
2025-01-07 5fd51c437819f1c9d027a936db4ba2ee7cd2e053
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
package com.zhitan.benchmarkmanage.domain;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.zhitan.common.annotation.Excel;
import com.zhitan.common.core.domain.BaseEntity;
import lombok.Data;
 
/**
 * 标杆值管理对象 energy_benchmark_manage
 *
 * @author ZhiTan
 * @date 2024-11-12
 */
@TableName("energy_benchmark_manage")
@Data
public class EnergyBenchmarkManage extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
    /** uuid主键 */
    private String id;
 
    /** 标杆编码 */
    @Excel(name = "标杆编码")
    private String code;
 
    /** 标杆类型 */
    @Excel(name = "标杆类型")
    private String type;
 
    /** 标杆等级 */
    @Excel(name = "标杆等级")
    private String grade;
 
    /** 标杆值 */
    @Excel(name = "标杆值")
    private String value;
 
    /** 国标编号 */
    @Excel(name = "国标编号")
    private String nationalNum;
 
}