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_trjl")
|
public class JianbjTrjl implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
/**
|
* 产品名称
|
*/
|
@TableField("cpmc")
|
private String cpmc;
|
|
/**
|
* 原因
|
*/
|
@TableField("yuanyin")
|
private String yuanyin;
|
|
/**
|
* 退铁数量
|
*/
|
@TableField("ttsl")
|
private Integer ttsl;
|
|
/**
|
* 素铁厂家
|
*/
|
@TableField("stcj")
|
private String stcj;
|
|
/**
|
* 亏盈
|
*/
|
@TableField("kuiying")
|
private String kuiying;
|
|
/**
|
* 实裁数量
|
*/
|
@TableField("scsl")
|
private Integer scsl;
|
|
/**
|
* 原铁数量
|
*/
|
@TableField("ytsl")
|
private Integer ytsl;
|
|
/**
|
* 裁剪时间
|
*/
|
@TableField("cjsj")
|
private LocalDateTime cjsj;
|
|
/**
|
* 印刷厂家
|
*/
|
@TableField("yscj")
|
private String yscj;
|
|
/**
|
* 原铁批号/板号
|
*/
|
@TableField("ytph_bh")
|
private String ytphBh;
|
|
/**
|
* 创建人
|
*/
|
@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;
|
|
/**
|
* ;
|
*/
|
|
private String headId;
|
|
/**
|
* 更新时间
|
*/
|
@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;
|
|
|
}
|