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; }