package com.ruoyi.inspect.vo;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
@Data
|
public class ProductVo {
|
|
/**
|
* 订单号
|
*/
|
@ExcelProperty(value = "订单号",index = 0)
|
@ApiModelProperty("订单号")
|
private String orderNo;
|
|
/**
|
* 批次号
|
*/
|
@ExcelProperty(value = "批次号",index = 1)
|
@ApiModelProperty("批次号")
|
private String updateBatchNo;
|
|
/**
|
* 零件号
|
*/
|
@ExcelProperty(value = "零件号",index = 2)
|
@ApiModelProperty("零件号")
|
private String partNo;
|
|
/**
|
* 零件描述
|
*/
|
@ExcelProperty(value = "零件描述",index = 3)
|
@ApiModelProperty("零件描述")
|
private String partDesc;
|
|
/**
|
* 委托编号
|
*/
|
@ExcelProperty(value = "委托编号",index = 4)
|
@ApiModelProperty("委托编号")
|
private String entrustCode ;
|
|
/**
|
* 样品编号
|
*/
|
@ExcelProperty(value = "样品编号",index = 5)
|
@ApiModelProperty("样品编号")
|
private String sampleCode;
|
|
/**
|
* 检验项
|
*/
|
@ExcelProperty(value = "检验项",index = 6)
|
@ApiModelProperty("检验项")
|
private String inspectionItem;
|
|
/**
|
* 检验子项
|
*/
|
@ExcelProperty(value = "检验子项",index = 7)
|
@ApiModelProperty("检验子项")
|
private String inspectionItemSubclass;
|
|
/**
|
* 标准要求
|
*/
|
@ExcelProperty(value = "标准要求",index = 8)
|
@ApiModelProperty("标准要求")
|
private String tell;
|
|
/**
|
* 检验值
|
*/
|
@ExcelProperty(value = "检验值",index = 9)
|
@ApiModelProperty("检验值")
|
private String lastValue;
|
|
/**
|
* 检验结果
|
*/
|
@ExcelProperty(value = "检验结果",index = 10)
|
@ApiModelProperty("检验结果")
|
private String insResult;
|
|
/**
|
* 检验人
|
*/
|
@ExcelProperty(value = "检验人",index = 11)
|
@ApiModelProperty("检验人")
|
private String name;
|
|
/**
|
* 检验时间
|
*/
|
@ExcelProperty(value = "检验时间",index = 12)
|
@ApiModelProperty("检验时间")
|
private String createTime;
|
|
|
}
|