feat: 第三方明细下载增加字段

dev
chenhc 1 year ago
parent 7a0128e3f3
commit 728e2162ad

@ -773,6 +773,12 @@ public class CtqyyClient extends CommonHttpClient {
thrInvResultResponse.setType("1");
thrInvResultResponse.setOutCount(ptxhInvResponse.getQuantity() + "");
thrInvResultResponse.setReCount(ptxhInvResponse.getQuantity() + "");
thrInvResultResponse.setSickerCode(ptxhInvResponse.getVisitNo());
thrInvResultResponse.setSickerName(ptxhInvResponse.getSickName());
thrInvResultResponse.setChargeTime(ptxhInvResponse.getFeeTime());
thrInvResultResponse.setChargeUser(ptxhInvResponse.getFeeUper());
thrInvResultResponses.add(thrInvResultResponse);
}
}

@ -57,4 +57,13 @@ public class InvResultEntity {
private String factoryCode;
@JsonProperty("factoryName")
private String factoryName;
@JsonProperty("visitNo")
private String visitNo;
@JsonProperty("sickName")
private String sickName;
@JsonProperty("feeTime")
private String feeTime;
@JsonProperty("feeUper")
private String feeUper;
}

@ -170,4 +170,15 @@ public class ThrInvResultResponse {
*
*/
private String sickerName;
/**
*
*/
private String chargeTime;
/**
*
*/
private String chargeUser;
}

Loading…
Cancel
Save