whyclxw
2024-07-23 9529ef53f815f94a420afcc3ee41240adb312f3c
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
62
63
64
65
66
67
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
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 java.io.Serializable;
import java.util.Date;
 
/**
 * <p>
 * 不良品过程表
 * </p>
 *
 * @author lxw
 * @since 2024-07-23
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName("tb_defective_products_history")
@ApiModel(value="DefectiveProductsHistory对象", description="不良品过程表")
public class DefectiveProductsHistory implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @ApiModelProperty(value = "不良品记录id")
    private Integer deftId;
 
    @ApiModelProperty(value = "记录时间")
    private Date recordTime;
 
    @ApiModelProperty(value = "接受者")
    private String receiverIds;
 
    private String receiverNames;
 
    @ApiModelProperty(value = "状态0,1,2,3")
    private Integer confirmStatus;
 
    @ApiModelProperty(value = "不良产品数")
    private Integer badProduct;
 
    @ApiModelProperty(value = "备注")
    private String note;
 
    @TableField(exist = false)
    private Integer senderId;
 
 
    @ApiModelProperty(value = "处理者")
    private Integer delId;
 
    @ApiModelProperty(value = "处理的文件路径")
    private String delUrl;
 
 
}