kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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
package com.nanometer.smartlab.entity;
 
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
@Getter
@Setter
@SuppressWarnings("serial")
public class SysController implements Serializable {
 
    private Long id;
 
    private String controllerCode;
 
    private String controllerName;
 
    private Timestamp createTime;
 
    private Timestamp updateTime;
 
    private ValidFlag validFlag;
 
    private Long type;
 
 
    //非数据库字段
    private String typeName;
}