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-spms-java/src/main/java/com/glxp/api/res/inout/IoOrderDetailBizResponse.java

179 lines
2.4 KiB
Java

package com.glxp.api.res.inout;
import lombok.Data;
import java.math.BigDecimal;
/**
* 单据业务详情VO
*/
@Data
public class IoOrderDetailBizResponse {
private Long id;
/**
* 订单号外键
*/
private String orderIdFk;
/**
* 耗材字典ID外键
*/
private Long bindRlFk;
/**
* DI信息UUID外键
*/
private String uuidFk;
/**
* DI
*/
private String nameCode;
/**
* 批次号
*/
private String batchNo;
/**
* 生产日期
*/
private String productDate;
/**
* 失效日期
*/
private String expireDate;
/**
* 产品通用名称
*/
private String coName;
/**
* 注册证号
*/
private String certCode;
/**
* 医疗器械注册备案证号
*/
private String ylqxzcrbarmc;
/**
* 生产企业
*/
private String manufacturer;
/**
* 计量单位
*/
private String measname;
/**
* 规格型号
*/
private String spec;
/**
* 价格
*/
private BigDecimal price;
/**
* 销售清单号
*/
private String secSalesListNo;
/**
* 发票第一票
*/
private String firstSalesInvNo;
/**
* 发票第二票
*/
private String secSalesInvNo;
/**
* 发票有效期
*/
private String invoiceDate;
/**
* 供应商ID外键
*/
private String supId;
/**
* 绑定供应商状态
*/
private String bindSupStatus;
/**
* 单据数量
*/
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 int scanCount;
private boolean checkSuccess;
private String filePath;
private String checkFileName;
private String invoiceCodes;
private Integer sucCount;
private boolean regStatus;
private String invoiceCode;
private String coldFilePath;
private String checkColdFileName;
}