package org.jeecg.modules.mdcJc.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.experimental.Accessors;
|
|
/**
|
* @author clown
|
* * @date 2024/7/19
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName("T_ProductDayschedule")
|
@ApiModel(value = "当月零部件计划进度")
|
public class ProductDayschedule {
|
@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;
|
|
}
|