50 lines
1.5 KiB
Java
50 lines
1.5 KiB
Java
package net.srt.vo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* @ClassName : StandardManagementVo
|
|
* @Description : 标准管理表
|
|
* @Author : FJJ
|
|
* @Date: 2023-12-20 11:24
|
|
*/
|
|
@Data
|
|
@Schema(description = "标准管理查询")
|
|
public class StandardManagementVo implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId("id")
|
|
private Long id;
|
|
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 version;
|
|
private Integer deleted;
|
|
private String creator;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date createTime;
|
|
private String updater;
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
|
|
private Date updateTime;
|
|
private Integer ifStandardRel;
|
|
private String group;
|
|
}
|