diff --git a/src/main/java/com/glxp/api/res/inv/ThrInvResultResponse.java b/src/main/java/com/glxp/api/res/inv/ThrInvResultResponse.java index 639488e66..c9e29f31a 100644 --- a/src/main/java/com/glxp/api/res/inv/ThrInvResultResponse.java +++ b/src/main/java/com/glxp/api/res/inv/ThrInvResultResponse.java @@ -8,21 +8,13 @@ import java.util.Date; @Data public class ThrInvResultResponse { -// private Long id; -// /** -// * 单据号 -// */ -// private String orderIdFk; + private Integer id; /** * 产品通用名称 */ private String cpmctymc; -// /** -// * 物资字典主键 -// */ -// private Long relId; /** * 第三方项目编码/耗材字典 @@ -42,7 +34,7 @@ public class ThrInvResultResponse { /** * 批次号 */ - private Integer batchNo; + private String batchNo; /** * 计量单位 @@ -57,12 +49,12 @@ public class ThrInvResultResponse { /** * 生产日期 */ - private Date productionDate; + private String productionDate; /** * 失效日期 */ - private Date expireDate; + private String expireDate; /** * 医疗器械注册备案人 @@ -119,10 +111,6 @@ public class ThrInvResultResponse { */ private String spaceName; -// /** -// * 实际数量 -// */ -// private String reCount; /** * 出入库类型 @@ -133,6 +121,10 @@ public class ThrInvResultResponse { * 生产企业 */ private String manufacturer; + /** + * 生产企业编码 + */ + private String manufactoryCode; /** * 备注 @@ -143,4 +135,20 @@ public class ThrInvResultResponse { * 第三方单据类型 */ private String billType; + + /** + * 实际数量 + */ + private String reCount; + /** + * 数据类型:住院、门诊等 + */ + private String type; + + /** + * 总金额 + */ + private BigDecimal amount; + + }