yangbin
2024-07-29 5b1ad59492452af8f342243605be36f847c07556
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
 
}