AdaKing88
2023-08-23 ae35159387a55199e8ab150ebb97d89d68a235bd
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
package org.jeecg.modules.arj.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.Version;
import com.baomidou.mybatisplus.annotation.TableId;
import java.io.Serializable;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 剪板机废品
 * </p>
 *
 * @author hyy
 * @since 2023-02-03
 */
@Data
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="JianbjFp对象", description="剪板机废品")
public class JianbjFp implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    @ApiModelProperty(value = ";")
    private String headId;
 
    @ApiModelProperty(value = "生产废品")
    private Integer shengchanFp;
 
    @ApiModelProperty(value = "印铁废品")
    private Integer yintieFp;
 
    @ApiModelProperty(value = "生产废品名称")
    private String scfpmc;
 
    @ApiModelProperty(value = "印铁废品名称")
    private String ytfpmc;
 
    @ApiModelProperty(value = "产品名称")
    private String pihao;
 
    @ApiModelProperty(value = ";")
    private String createdBy;
 
    @ApiModelProperty(value = ";")
    private Date createdTime;
 
    @ApiModelProperty(value = ";")
    private String updatedBy;
 
    @ApiModelProperty(value = ";")
    private Date updatedTime;
 
 
}