package org.jeecg.modules.arj.entity;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
@ApiModel(value="FeipintTotal对象", description="废品总集")
|
public class FeipintTotal {
|
@ApiModelProperty(value = "印铁废品")
|
private int yt_total;
|
@ApiModelProperty(value = "剪板废品")
|
private int jb_total;
|
@ApiModelProperty(value = "焊机废品")
|
private int hj_total;
|
@ApiModelProperty(value = "翻边废品")
|
private int fb_total;
|
@ApiModelProperty(value = "封口废品")
|
private int fk_total;
|
@ApiModelProperty(value = "检罐废品")
|
private int jianguan_total;
|
@ApiModelProperty(value = "集罐废品")
|
private int jg_total;
|
@ApiModelProperty(value = "印废罐")
|
private int fp_total;
|
@ApiModelProperty(value = "质检")
|
private int zj_total;
|
|
@ApiModelProperty(value = "head id")
|
private String head_id;
|
}
|