Browse Source

完善售后服务维修工单增加其他结算金额

master
fanzongzhe 1 year ago
parent
commit
e5c05ab700
  1. 4
      yxt-as/src/main/java/com/yxt/anrui/as/api/asbusrepairbill/SettleVo.java
  2. 6
      yxt-as/src/main/java/com/yxt/anrui/as/feign/fms/FmsReceivesettle.java

4
yxt-as/src/main/java/com/yxt/anrui/as/api/asbusrepairbill/SettleVo.java

@ -27,8 +27,10 @@ public class SettleVo {
private String settleAmount; // 结算金额
@ApiModelProperty("其他结算方式")
private String otherSettleKey; // 其他结算方式
@ApiModelProperty("其他结算方式")
private String otherSettleValue; // 其他结算方式
@ApiModelProperty("其他结算金额")
private String otherSettleValue; // 其他结算金额
private String otherSettleAmount; // 其他结算金额
@ApiModelProperty("欠款金额")
private String debts; // 欠款金额
@ApiModelProperty("结算时间")

6
yxt-as/src/main/java/com/yxt/anrui/as/feign/fms/FmsReceivesettle.java

@ -80,8 +80,10 @@ public class FmsReceivesettle extends BaseEntity {
private BigDecimal settleAmount; // 结算金额
@ApiModelProperty("其他结算方式")
private String otherSettleKey; // 其他结算方式
@ApiModelProperty("其他结算金额")
private String otherSettleValue; // 其他结算金额
@ApiModelProperty("其他结算方式")
private String otherSettleValue; // 其他结算方式
@ApiModelProperty("其他结算金额")
private String otherSettleAmount; // 其他结算金额
@ApiModelProperty("欠款金额")
private BigDecimal debts; // 欠款金额
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")

Loading…
Cancel
Save