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.
81 lines
1.7 KiB
Java
81 lines
1.7 KiB
Java
package com.glxp.api.req.collect;
|
|
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* 药品处方查询-明细
|
|
*/
|
|
@Data
|
|
@AllArgsConstructor
|
|
@NoArgsConstructor
|
|
@TableName(value = "v_a010_mx")
|
|
public class VA010Mx implements Serializable {
|
|
|
|
@TableField(value = "CODEFK")
|
|
@ExcelProperty("本单据号")
|
|
@ColumnWidth(30)
|
|
private String codefk;
|
|
|
|
|
|
@TableField(value = "ITEMNAME")
|
|
@ExcelProperty("产品通用名称")
|
|
@ColumnWidth(30)
|
|
private String itemname;
|
|
|
|
@TableField(value = "ITEMCODE")
|
|
@ExcelProperty("主系统产品编码")
|
|
@ColumnWidth(30)
|
|
private String itemcode;
|
|
|
|
|
|
@TableField(value = "MEASUREUNIT")
|
|
@ExcelProperty("计量单位")
|
|
@ColumnWidth(30)
|
|
private String measureunit;
|
|
|
|
|
|
|
|
|
|
@TableField(value = "COUNT")
|
|
@ExcelProperty("单据数量")
|
|
@ColumnWidth(30)
|
|
private String count;
|
|
|
|
|
|
@TableField(value = "HILIST_CODE")
|
|
@ExcelProperty("院内编码")
|
|
@ColumnWidth(30)
|
|
private String hiltstCode;
|
|
|
|
@ExcelProperty("往来信息")
|
|
@ColumnWidth(30)
|
|
private String deptcode;
|
|
|
|
|
|
@ExcelProperty("往来信息名称")
|
|
@ColumnWidth(30)
|
|
private String sickname;
|
|
|
|
@ExcelProperty("发货方名称")
|
|
@ColumnWidth(30)
|
|
private String deptname;
|
|
|
|
|
|
@ExcelProperty("单据时间")
|
|
@ColumnWidth(30)
|
|
private String prescribedate;
|
|
|
|
@ExcelProperty("包装规格")
|
|
@ColumnWidth(30)
|
|
private String bzgg;
|
|
|
|
}
|