You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udi-wms-java/src/main/java/com/glxp/api/res/inv/StockCompareDetailVo.java

98 lines
2.2 KiB
Java

package com.glxp.api.res.inv;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.TableField;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class StockCompareDetailVo {
/**
* id
*/
@ExcelProperty(value = "比对记录号", index = 1)
private Long compareId;
// /**
// * 产品id
// */
// private Long productId;
/**
* DI
*/
@ExcelProperty(value = "DI/物资编码", index = 2)
private String nameCode;
/**
*
*/
@ExcelProperty(value = "第三方产品编码", index = 3)
private String thrProductId;
/**
*
*/
@ExcelProperty(value = "产品描述", index = 16)
private String cpms;
/**
*
*/
@ExcelProperty(value = "产品名称", index = 4)
private String productName;
/**
*
*/
@ExcelProperty(value = "规格型号", index = 5)
private String ggxh;
/**
*
*/
@ExcelProperty(value = "生产厂家", index = 12)
private String manufactory;
/**
* /
*/
@ExcelProperty(value = "医疗器械注册/备案人名称", index = 13)
private String ylqxzcrbarmc;
/**
* /
*/
@ExcelProperty(value = "注册证编号/备案批准编号", index = 14)
private String zczbhhzbapzbh;
@ExcelProperty(value = "出入库类型", index = 11)
private String mainAction;
/**
*
*/
@ExcelProperty(value = "价格", index = 9)
private BigDecimal price;
/**
*
*/
@ExcelProperty(value = "第三方价格", index = 10)
private BigDecimal thrPrice;
@ExcelProperty(value = "UDI产品数量", index = 7)
private Integer count;
@ExcelProperty(value = "第三方系统产品数量", index = 8)
private Integer thrCount;
/**
*
*/
@ExcelProperty(value = "批次号", index = 6)
private String batchNo;
@ExcelProperty(value = "比对时间", index = 15)
private Date updateTime;
}