查询联行号
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
package com.xjrsoft.module.mdm.client;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.springframework.cloud.openfeign.FeignClient;
|
||||
@ -7,6 +8,7 @@ import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
|
||||
import com.xjrsoft.common.constant.GlobalConstant;
|
||||
import com.xjrsoft.module.mdm.dto.UpdateLngBBankDto;
|
||||
|
||||
/**
|
||||
* @author: ksy
|
||||
@ -21,4 +23,7 @@ public interface ILngBankClient {
|
||||
@GetMapping("/getTranById")
|
||||
String getTranById(@RequestParam("id")String id);
|
||||
|
||||
@GetMapping("/getTranByCodes")
|
||||
List<UpdateLngBBankDto> getTranByCodes(@RequestParam("codes") List<String> codes);
|
||||
|
||||
}
|
||||
|
||||
@ -38,7 +38,7 @@ public class LngCustomerBankVo {
|
||||
* 银行
|
||||
*/
|
||||
@ApiModelProperty("银行")
|
||||
@Trans(type = TransType.LNG_BANK, transToFieldName = "bankName")
|
||||
//@Trans(type = TransType.LNG_BANK, transToFieldName = "bankName")
|
||||
private String bankCode;
|
||||
|
||||
/**
|
||||
@ -125,7 +125,11 @@ public class LngCustomerBankVo {
|
||||
private Long ruleUserId;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 联行号
|
||||
*/
|
||||
@ApiModelProperty("联行号")
|
||||
private String interBankCode;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -38,7 +38,7 @@ public class LngSupplierBankVo {
|
||||
* 银行
|
||||
*/
|
||||
@ApiModelProperty("银行")
|
||||
@Trans(type = TransType.LNG_BANK, transToFieldName = "bankName")
|
||||
//@Trans(type = TransType.LNG_BANK, transToFieldName = "bankName")
|
||||
private String bankCode;
|
||||
|
||||
/**
|
||||
@ -123,6 +123,12 @@ public class LngSupplierBankVo {
|
||||
*/
|
||||
@ApiModelProperty("数据权限id")
|
||||
private Long ruleUserId;
|
||||
|
||||
/**
|
||||
* 数据权限id
|
||||
*/
|
||||
@ApiModelProperty("联行号")
|
||||
private String interBankCode;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user