cnas-server/src/main/java/com/yuanchu/mom/pojo/Seal.java
@@ -20,26 +20,27 @@
    @ApiModelProperty(value = "主键")
    @TableId(type = IdType.AUTO)
    private Integer id;
    @ValueTableShow(1)
    @ApiModelProperty(value = "实验室id")
    private Integer labId;
    @TableField(exist=false)
    @ValueTableShow(2)
    @ApiModelProperty(value = "实验室名称")
    private String laboratoryName;
    @ValueTableShow(3)
    @ApiModelProperty(value = "印章图片")
    private String address;
    @ValueTableShow(3)
    @ValueTableShow(4)
    @ApiModelProperty(value = "印章类型")
    private String type;
    @ApiModelProperty(value = "创建人id")
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @ValueTableShow(5)
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime createTime;
}