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
| 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;
|
| /**
| * 标杆值管理对象 benchmark
| *
| * @author ZhiTan
| */
| @TableName("benchmark")
| @Data
| public class Benchmark 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;
|
| }
|
|