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

采购单保存后推送预期到货通知单开发
This commit is contained in:
God
2024-07-11 14:57:50 +08:00
parent eed5b29a4f
commit c684dad497
3 changed files with 24 additions and 15 deletions

View File

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

View File

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

View File

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