Lius
2025-04-15 6a5cb9b11c95fbde3e56a55ea5379b633651d2ad
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
48
49
50
51
52
53
54
55
56
57
58
package org.jeecg.modules.mdcJc.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.system.base.entity.JeecgEntity;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
 
/**
 * @Description: 设备集成mes合格率表
 * @Author: jeecg-boot
 * @Date: 2025-04-14
 * @Version: V1.0
 */
@Data
@TableName("mdcJc_rc_jobreport")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdcJc_rc_jobreport对象", description = "设备集成mes合格率表")
public class MdcJcRcJobreport extends JeecgEntity implements Serializable {
 
    /**
     * 设备编号
     */
    @Excel(name = "设备编号", width = 15)
    @ApiModelProperty(value = "设备编号")
    private String equipmentId;
    /**
     * 加工零件数量
     */
    @Excel(name = "加工零件数量", width = 15)
    @ApiModelProperty(value = "加工零件数量")
    private Integer processCount;
    /**
     * 合格数量
     */
    @Excel(name = "合格数量", width = 15)
    @ApiModelProperty(value = "合格数量")
    private Integer okuqty;
    /**
     * 不合格零件数量
     */
    @Excel(name = "不合格零件数量", width = 15)
    @ApiModelProperty(value = "不合格零件数量")
    private Integer nookqty;
    /**
     * 日期
     */
    @Excel(name = "日期", width = 15)
    @ApiModelProperty(value = "日期")
    private String theDate;
 
}