35 lines
898 B
Java
35 lines
898 B
Java
package net.srt.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
import net.srt.framework.mybatis.entity.BaseEntity;
|
|
|
|
/**
|
|
* @ClassName : DatastandardEntity
|
|
* @Description :
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-21 11:09
|
|
*/
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Data
|
|
@TableName("standard_management")
|
|
public class DatastandardEntity extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
private Integer categoryId;
|
|
private String engName;
|
|
private String cnName;
|
|
private Integer codeNum;
|
|
private String dataType;
|
|
private Integer dataLength;
|
|
private Integer dataPrecision;
|
|
private Integer nullable;
|
|
private Integer standardCodeId;
|
|
private Integer type;
|
|
private String note;
|
|
private Long projectId;
|
|
private Integer status;
|
|
private Integer ifStandardRel;
|
|
|
|
}
|