package org.jeecg.modules.mdcJc.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @author clown
|
* * @date 2024/7/19
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("mdcJc_ProductDayschedule")
|
@ApiModel(value = "当月零部件计划进度")
|
public class MdcProductDayschedule implements Serializable {
|
|
private static final long serialVersionUID = -4733120585358211415L;
|
|
@TableId(type = IdType.ASSIGN_ID)
|
private String mdc_id;
|
|
@TableField(value = "id")
|
private Integer id;
|
/**
|
* 计划日期
|
*/
|
@TableField(value = "planDate")
|
private String planDate;
|
/**
|
* 零部件号
|
*/
|
@TableField(value = "productNo")
|
private String productNo;
|
/**
|
* 零部件名称
|
*/
|
@TableField(value = "productName")
|
private String productName;
|
/**
|
* 工单号
|
*/
|
@TableField(value = "orderId")
|
private String orderId;
|
/**
|
* 工单名称
|
*/
|
@TableField(value = "procedureName")
|
private String procedureName;
|
/**
|
* 班组
|
*/
|
@TableField(value = "clazz")
|
private String clazz;
|
/**
|
* 计划量
|
*/
|
@TableField(value = "planCount")
|
private Integer planCount;
|
/**
|
* 完成量
|
*/
|
@TableField(value = "completionCount")
|
private Integer completionCount;
|
/**
|
* 合格量
|
*/
|
@TableField(value = "qualifiedCount")
|
private Integer qualifiedCount;
|
/**
|
* 工艺路线
|
*/
|
@TableField(value = "processRoute")
|
private String processRoute;
|
/**
|
* 设备编号
|
*/
|
@TableField(value = "equipmentId")
|
private String equipmentId;
|
/**
|
* 自动线标识
|
*/
|
@TableField(value = "isAutomaticLine")
|
private String isAutomaticLine;
|
/**
|
* 创建日期
|
*/
|
@JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss")
|
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
@ApiModelProperty(value = "创建日期")
|
private Date createTime;
|
|
}
|