package org.jeecg.modules.arj.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
/**
|
* <p>
|
* 剪板机抽检记录
|
* </p>
|
*
|
* @author jinjun.huang
|
* @since 2022-11-21
|
*/
|
@Getter
|
@Setter
|
@TableName("jianbj_rd")
|
public class JianbjRd implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
private String headId;
|
|
|
private LocalDateTime shijian ;
|
/**
|
* 内外涂划伤
|
*/
|
@TableField("nwths")
|
private String nwths;
|
|
/**
|
* 留空
|
*/
|
@TableField("liukong")
|
private String liukong;
|
|
/**
|
* 印刷质量
|
*/
|
@TableField("yszl")
|
private String yszl;
|
|
/**
|
* 创建人
|
*/
|
@TableField("created_by")
|
private String createdBy;
|
|
/**
|
* 创建时间
|
*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@TableField(fill = FieldFill.INSERT)//
|
private Date createdTime;
|
|
/**
|
* 更新人
|
*/
|
@TableField("updated_by")
|
private String updatedBy;
|
|
|
|
|
/**
|
* 更新时间
|
*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@TableField(fill = FieldFill.UPDATE)//
|
private Date updatedTime;
|
|
|
}
|