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
| package com.ruoyi.project.tr.riskType.domain;
|
| import com.ruoyi.framework.aspectj.lang.annotation.Excel;
| import com.ruoyi.framework.web.domain.BaseEntity;
| import lombok.Data;
|
| /**
| * 风险单元类型对象 tr_risk_type
| *
| * @author wm
| * @date 2020-05-05
| */
| @Data
| public class RiskType extends BaseEntity
| {
| private static final long serialVersionUID = 1L;
|
| /** id */
| @Excel(name = "id")
| private Long riskTypeId;
|
| /** 所属公司 */
| @Excel(name = "所属公司")
| private Long companyId;
|
| /** 名称 */
| @Excel(name = "名称")
| private String riskTypeName;
|
| /** 类型所属类型(1设备设置,2作业活动,3工艺节点,4活动频率) */
| @Excel(name = "类型所属类型(1设备设置,2作业活动,3工艺节点,4活动频率)")
| private Integer riskTypeType;
|
| }
|
|