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
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;
 
import java.io.Serializable;
 
/**
 * @author clown
 * * @date 2024/7/16
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("T_ProductMonthlyschedule")
@ApiModel(value = "当月零部件计划进度")
public class ProductMonthlyschedule implements Serializable {
 
    @TableField(value = "ID")
    private Integer id;
    @TableField(value = "NY")
    private String ny;
    @TableField(value = "ProductNo")
    private String productNo;
    @TableField(value = "ProductName")
    private String productName;
    @TableField(value = "PlanCount")
    private Integer PlanCount;
    @TableField(value = "CompletionCount")
    private Integer completionCount;
    @TableField(value = "QualifideCount")
    private Integer qualifiedCount;
}