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.
121 lines
1.6 KiB
Java
121 lines
1.6 KiB
Java
package com.glxp.api.res.basic;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
@Data
|
|
public class BasicSkPrescribeDiResponse {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 项目组套外键
|
|
*/
|
|
private String pId;
|
|
|
|
/**
|
|
* 患者编码
|
|
*/
|
|
private String sickerCode;
|
|
|
|
/**
|
|
* 处方编码
|
|
*/
|
|
private String prescribeCode;
|
|
|
|
/**
|
|
* 住院号
|
|
*/
|
|
private String adNum;
|
|
|
|
|
|
/**
|
|
* 耗材产品id
|
|
*/
|
|
private Long relId;
|
|
|
|
/**
|
|
* DI标识
|
|
*/
|
|
private String nameCode;
|
|
|
|
private String diCode;
|
|
|
|
|
|
/**
|
|
* 耗材名称
|
|
*/
|
|
private String thrName;
|
|
|
|
/**
|
|
* 耗材编码
|
|
*/
|
|
private String thrCode;
|
|
|
|
/**
|
|
* 计量数量
|
|
*/
|
|
private String measureCount;
|
|
|
|
/**
|
|
* 计量单位
|
|
*/
|
|
private String measureUnit;
|
|
|
|
/**
|
|
* 类别
|
|
*/
|
|
private String category;
|
|
|
|
/**
|
|
* 频率
|
|
*/
|
|
private String frequency;
|
|
|
|
/**
|
|
* 数量
|
|
*/
|
|
private Integer count;
|
|
|
|
/**
|
|
* 价格
|
|
*/
|
|
private BigDecimal price;
|
|
|
|
/**
|
|
* 规格型号
|
|
*/
|
|
private String ggxh;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remark;
|
|
|
|
/**
|
|
* 总金额
|
|
*/
|
|
private BigDecimal amount;
|
|
|
|
private String zczbhhzbapzbh;
|
|
|
|
private String manufactory;
|
|
private String cpmctymc;
|
|
/**
|
|
* 实际数量
|
|
*/
|
|
private Integer realCount;
|
|
|
|
/**
|
|
* 实际价格
|
|
*/
|
|
private BigDecimal realPrice;
|
|
|
|
}
|