package org.jeecg.modules.arj.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 产量统计
|
* </p>
|
*
|
* @author jinjun.huang
|
* @since 2022-11-21
|
*/
|
@Data
|
@TableName("line_chanliangtongji")
|
public class LineChanliangtongji implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 创建时间
|
*/
|
@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.INSERT_UPDATE)////进行添加和修改操作时有值
|
private Date updatedTime;
|
|
/**
|
* 焊机总数
|
*/
|
@TableField("hjzs")
|
private Integer hjzs;
|
|
/**
|
* 成品
|
*/
|
@TableField("chengpin")
|
private Integer chengpin;
|
|
/**
|
* 转成品
|
*/
|
@TableField("zhuancp")
|
private Integer zhuancp;
|
|
/**
|
* 待检品
|
*/
|
@TableField("daijp")
|
private Integer daijp;
|
|
/**
|
* 接班前剩余
|
*/
|
@TableField("jiebqsy")
|
private Integer jiebqsy;
|
|
/**
|
* 交班后剩余
|
*/
|
@TableField("jiaobhsy")
|
private Integer jiaobhsy;
|
|
/**
|
* 印废罐
|
*/
|
@TableField("yinfg")
|
private Integer yinfg;
|
|
/**
|
* 废品+剪板
|
*/
|
@TableField("feipjbfp")
|
private Integer feipjbfp;
|
|
/**
|
* 主键
|
*/
|
@ApiModelProperty(value = "key")
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 合格成品=_x_罐-接班前剩余+交班后剩余
|
*/
|
@TableField("hegcp")
|
private String hegcp;
|
|
/**
|
* (当班废品总数+当班焊机总数)x1000
|
*/
|
@TableField("feipl")
|
private BigDecimal feipl;
|
|
/**
|
* 彩印铁批次
|
*/
|
@TableField("caiytpc")
|
private Integer caiytpc;
|
|
/**
|
* 表头id
|
*/
|
@TableField("head_id")
|
private String headId;
|
|
/*2
|
* 合格1
|
*/
|
@TableField("hg1")
|
private String hg1;
|
/**
|
* 合格1
|
*/
|
@TableField("hg2")
|
private String hg2;
|
|
@TableField("hg3")
|
private String hg3;
|
|
}
|