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/inout/IoExOrderDetailResultRespon...

176 lines
3.0 KiB
Java

package com.glxp.api.res.inout;
import cn.hutool.core.util.StrUtil;
import com.alibaba.excel.annotation.ExcelProperty;
import lombok.Data;
import java.math.BigDecimal;
import java.util.Date;
@Data
public class IoExOrderDetailResultResponse {
private Integer id;
/**
* 订单号外键
*/
@ExcelProperty(value = "出入库单号", index = 1)
private String orderIdFk;
/**
* 耗材字典ID外键
*/
private Long bindRlFk;
/**
* DI信息UUID外键
*/
private String uuidFk;
/**
* DI
*/
@ExcelProperty(value = "DI/物资编码", index = 2)
private String nameCode;
/**
* 批次号
*/
@ExcelProperty(value = "批次号", index = 5)
private String batchNo;
/**
* 生产日期
*/
@ExcelProperty(value = "生产日期", index = 10)
private String productDate;
/**
* 失效日期
*/
@ExcelProperty(value = "失效日期", index = 11)
private String expireDate;
/**
* 产品通用名称
*/
@ExcelProperty(value = "物资名称", index = 3)
private String coName;
/**
* 注册证号
*/
@ExcelProperty(value = "注册/备案号", index = 14)
private String certCode;
/**
* 医疗器械注册备案证号
*/
private String ylqxzcrbarmc;
/**
* 生产企业
*/
@ExcelProperty(value = "生产企业", index = 13)
private String manufacturer;
/**
* 计量单位
*/
@ExcelProperty(value = "计量单位", index = 8)
private String measname;
/**
* 规格型号
*/
@ExcelProperty(value = "规格型号", index = 4)
private String spec;
/**
* 价格
*/
private BigDecimal price;
/**
* 单据数量
*/
private int count;
/**
* 实际数量
*/
private int reCount;
/**
* 备注
*/
private String remark;
/**
* 扩展字段1
*/
private String remark1;
/**
* 扩展字段2
*/
private String remark2;
/**
* 扩展字段3
*/
private String remark3;
/**
* 扩展字段4
*/
private String remark4;
/**
* 扩展字段5
*/
private String remark5;
/**
* 灭菌批号
*/
private String sterBatchNo;
/**
* 灭菌日期
*/
private String sterDate;
@ExcelProperty(value = "单据类型", index = 9)
private String billTypeName;
private String mainAction;
@ExcelProperty(value = "出入库时间", index = 12)
private Date auditTime;
//
// @ExcelProperty(value = "往来单位", index = 0)
// private String fromName;
/**
* 仓库/科室名称
*/
private String invName;
//
// public String getFromName() {
// if (StrUtil.isNotEmpty(fromCorpName))
// return fromCorpName;
// if (StrUtil.isNotEmpty(fromInvName))
// return fromInvName;
//
//
// return fromName;
// }
}