feat: 阳采追溯码导出
parent
5fb4ffb529
commit
9a5efc897b
@ -0,0 +1,128 @@
|
|||||||
|
package com.glxp.api.entity.alihealth;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class YcFileOrderUploadVo {
|
||||||
|
|
||||||
|
@ExcelProperty("订单编号")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String ycBillNo;
|
||||||
|
|
||||||
|
|
||||||
|
@ExcelProperty("发货明细编号")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String shipmentDetailId;
|
||||||
|
|
||||||
|
@ExcelProperty("发货明细状态")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String shipmentDetailStatus;
|
||||||
|
|
||||||
|
@ExcelProperty("发货时间")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String shipmentTime;
|
||||||
|
|
||||||
|
@ExcelProperty("药品统一编码")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String drugUnifiedCode;
|
||||||
|
|
||||||
|
@ExcelProperty("产品名称")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String productName;
|
||||||
|
|
||||||
|
@ExcelProperty("数据来源")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String dataSource;
|
||||||
|
|
||||||
|
@ExcelProperty("剂型")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String dosageForm;
|
||||||
|
|
||||||
|
@ExcelProperty("规格")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String specification;
|
||||||
|
|
||||||
|
@ExcelProperty("包装")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String packaging;
|
||||||
|
|
||||||
|
@ExcelProperty("包装材质")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String packagingMaterial;
|
||||||
|
|
||||||
|
@ExcelProperty("采购价格(元)")
|
||||||
|
@ColumnWidth(20)
|
||||||
|
private String purchasePrice;
|
||||||
|
|
||||||
|
@ExcelProperty("挂网价(元)")
|
||||||
|
@ColumnWidth(20)
|
||||||
|
private String listedPrice;
|
||||||
|
|
||||||
|
@ExcelProperty("备案号")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String recordNumber;
|
||||||
|
|
||||||
|
@ExcelProperty("备案时间")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String recordTime;
|
||||||
|
|
||||||
|
@ExcelProperty("全国省级最低挂网价")
|
||||||
|
@ColumnWidth(20)
|
||||||
|
private String lowestListedPrice;
|
||||||
|
|
||||||
|
@ExcelProperty("计价单位")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String pricingUnit;
|
||||||
|
|
||||||
|
@ExcelProperty("发货数量")
|
||||||
|
@ColumnWidth(20)
|
||||||
|
private String shipmentQuantity;
|
||||||
|
|
||||||
|
@ExcelProperty("发货金额(元)")
|
||||||
|
@ColumnWidth(20)
|
||||||
|
private String shipmentAmount;
|
||||||
|
|
||||||
|
@ExcelProperty("批号")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String batchNumber;
|
||||||
|
|
||||||
|
@ExcelProperty("发货备注")
|
||||||
|
@ColumnWidth(100)
|
||||||
|
private String shipmentRemark;
|
||||||
|
|
||||||
|
@ExcelProperty("片区")
|
||||||
|
@ColumnWidth(30)
|
||||||
|
private String district;
|
||||||
|
|
||||||
|
@ExcelProperty("医疗机构")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String medicalInstitution;
|
||||||
|
|
||||||
|
@ExcelProperty("生产企业")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String manufacturer;
|
||||||
|
|
||||||
|
@ExcelProperty("申报企业")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String declaringEnterprise;
|
||||||
|
|
||||||
|
@ExcelProperty("销售清单号(第二票)")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String salesInvoiceNumberSecond;
|
||||||
|
|
||||||
|
@ExcelProperty("销售发票号(第二票)")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String salesInvoiceNumberSecondTicket;
|
||||||
|
|
||||||
|
@ExcelProperty("销售发票号(第一票)")
|
||||||
|
@ColumnWidth(50)
|
||||||
|
private String salesInvoiceNumberFirstTicket;
|
||||||
|
|
||||||
|
@ExcelProperty("采购备注")
|
||||||
|
@ColumnWidth(100)
|
||||||
|
private String purchaseRemark;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue