Lius
2024-07-08 c642e468df7f88cdd33d7b5417dd500ee3850813
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
59
60
61
package org.jeecg.modules.mdc.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: 标准加工时间
 * @Author: Lius
 * @Date: 2024-07-08
 * @Version: V1.0
 */
@Data
@TableName("mdc_standard_process_duration")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value = "mdc_standard_process_duration对象", description = "标准加工时间")
public class MdcStandardProcessDuration extends JeecgEntity implements Serializable {
 
    private static final long serialVersionUID = -4064895242484730766L;
 
    /**
     * 零件号
     */
    @Excel(name = "零件号", width = 15)
    @ApiModelProperty(value = "零件号")
    private String partsCode;
    /**
     * 批次号
     */
    @Excel(name = "批次号", width = 15)
    @ApiModelProperty(value = "批次号")
    private String batchCode;
    /**
     * 程序号
     */
    @Excel(name = "程序号", width = 15)
    @ApiModelProperty(value = "程序号")
    private String sequenceNumber;
    /**
     * 时长
     */
    @Excel(name = "时长(分钟)", width = 15)
    @ApiModelProperty(value = "时长(分钟)")
    private Integer duration;
    /**
     * 备注
     */
    @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
    private String remark;
 
}