Browse Source

oms调用系统管理下根据组织全路径查询当前部门下的所有员工接口开发

采购单保存后推送预期到货通知单开发
master
God 11 months ago
parent
commit
c684dad497
  1. 13
      src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmount.java
  2. 13
      src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmountDetailsVo.java
  3. 13
      src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmountDto.java

13
src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmount.java

@ -63,8 +63,14 @@ public class PurchaseBillAmount extends BaseEntity {
private String otherShareTypeKey; // 其他费用分摊方式Key
@ApiModelProperty("其他费用分摊方式Value")
private String otherShareTypeValue; // 其他费用分摊方式Value
@ApiModelProperty("结算账户")
private String settleAccount; // 结算账户
@ApiModelProperty("结算账户key")
private String settleAccountKey;
@ApiModelProperty("结算账户value")
private String settleAccountValue;
@ApiModelProperty("币种")
private String currencyKey;
@ApiModelProperty("币种")
private String currencyValue;
@ApiModelProperty("预付金额")
private BigDecimal prepayment; // 预付金额
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@ -76,7 +82,4 @@ public class PurchaseBillAmount extends BaseEntity {
private String bankAccountName; // 收款账户
@ApiModelProperty("收款银行账号")
private String bankAccount; // 收款银行账号
@ApiModelProperty("币种")
private String currency; // 币种
}

13
src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmountDetailsVo.java

@ -75,8 +75,14 @@ public class PurchaseBillAmountDetailsVo implements Vo {
private String otherShareTypeKey; // 其他费用分摊方式Key
@ApiModelProperty("其他费用分摊方式Value")
private String otherShareTypeValue; // 其他费用分摊方式Value
@ApiModelProperty("结算账户")
private String settleAccount; // 结算账户
@ApiModelProperty("结算账户key")
private String settleAccountKey;
@ApiModelProperty("结算账户value")
private String settleAccountValue;
@ApiModelProperty("币种")
private String currencyKey;
@ApiModelProperty("币种")
private String currencyValue;
@ApiModelProperty("预付金额")
private BigDecimal prepayment; // 预付金额
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@ -89,7 +95,4 @@ public class PurchaseBillAmountDetailsVo implements Vo {
private String bankAccountName; // 收款账户
@ApiModelProperty("收款银行账号")
private String bankAccount; // 收款银行账号
@ApiModelProperty("币种")
private String currency; // 币种
}

13
src/main/java/com/yxt/purchase/biz/purchasebillamount/PurchaseBillAmountDto.java

@ -75,8 +75,14 @@ public class PurchaseBillAmountDto implements Dto {
private String otherShareTypeKey; // 其他费用分摊方式Key
@ApiModelProperty("其他费用分摊方式Value")
private String otherShareTypeValue; // 其他费用分摊方式Value
@ApiModelProperty("结算账户")
private String settleAccount; // 结算账户
@ApiModelProperty("结算账户key")
private String settleAccountKey;
@ApiModelProperty("结算账户value")
private String settleAccountValue;
@ApiModelProperty("币种")
private String currencyKey;
@ApiModelProperty("币种")
private String currencyValue;
@ApiModelProperty("预付金额")
private BigDecimal prepayment; // 预付金额
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
@ -89,7 +95,4 @@ public class PurchaseBillAmountDto implements Dto {
private String bankAccountName; // 收款账户
@ApiModelProperty("收款银行账号")
private String bankAccount; // 收款银行账号
@ApiModelProperty("币种")
private String currency; // 币种
}
Loading…
Cancel
Save