第三方接口修改,第三接口容错处理,患者信息相关修改,单据类型患者相关修改,临床出库患者信息选择,是否对照处方等相关配置
parent
5f110bea39
commit
c73e2bf1f2
@ -0,0 +1,122 @@
|
||||
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 {
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 项目组套外键
|
||||
*/
|
||||
@TableField(value = "pId")
|
||||
private Long pId;
|
||||
|
||||
/**
|
||||
* 患者编码
|
||||
*/
|
||||
@TableField(value = "sickerCode")
|
||||
private String sickerCode;
|
||||
|
||||
/**
|
||||
* 处方编码
|
||||
*/
|
||||
@TableField(value = "prescribeCode")
|
||||
private String prescribeCode;
|
||||
|
||||
/**
|
||||
* 住院号
|
||||
*/
|
||||
@TableField(value = "adNum")
|
||||
private String adNum;
|
||||
|
||||
|
||||
/**
|
||||
* 耗材产品id
|
||||
*/
|
||||
@TableField(value = "relId")
|
||||
private Long relId;
|
||||
|
||||
/**
|
||||
* DI标识
|
||||
*/
|
||||
@TableField(value = "nameCode")
|
||||
private String nameCode;
|
||||
|
||||
|
||||
/**
|
||||
* 耗材名称
|
||||
*/
|
||||
@TableField(value = "thrName")
|
||||
private String thrName;
|
||||
|
||||
/**
|
||||
* 耗材编码
|
||||
*/
|
||||
@TableField(value = "thrCode")
|
||||
private String thrCode;
|
||||
|
||||
/**
|
||||
* 计量数量
|
||||
*/
|
||||
@TableField(value = "measureCount")
|
||||
private String measureCount;
|
||||
|
||||
/**
|
||||
* 计量单位
|
||||
*/
|
||||
@TableField(value = "measureUnit")
|
||||
private String measureUnit;
|
||||
|
||||
/**
|
||||
* 类别
|
||||
*/
|
||||
@TableField(value = "category")
|
||||
private String category;
|
||||
|
||||
/**
|
||||
* 频率
|
||||
*/
|
||||
@TableField(value = "frequency")
|
||||
private String frequency;
|
||||
|
||||
/**
|
||||
* 数量
|
||||
*/
|
||||
@TableField(value = "count")
|
||||
private Integer count;
|
||||
|
||||
/**
|
||||
* 价格
|
||||
*/
|
||||
@TableField(value = "price")
|
||||
private BigDecimal price;
|
||||
|
||||
/**
|
||||
* 规格型号
|
||||
*/
|
||||
@TableField(value = "ggxh")
|
||||
private String ggxh;
|
||||
|
||||
/**
|
||||
* 备注
|
||||
*/
|
||||
@TableField(value = "remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 总金额
|
||||
*/
|
||||
@TableField(value = "amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
}
|
Loading…
Reference in New Issue