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.
98 lines
2.2 KiB
Java
98 lines
2.2 KiB
Java
2 years ago
|
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;
|
||
|
}
|