fix(entryexit): 移除银行流水查询中的冗余参数验证
- 删除了不再需要的 clientId 参数验证逻辑 - 移除了 API 请求中多余的 account 查询参数 - 简化了银行流水数据查询接口调用
This commit is contained in:
@@ -56,7 +56,6 @@ namespace YLErp.Services.CashRecordModule
|
||||
// 构建请求 URL
|
||||
var apiUrl = $"{_baseUrl}/eusp/queryStatement";
|
||||
var queryString = $"?token={Uri.EscapeDataString(token)}" +
|
||||
$"&account={Uri.EscapeDataString(account)}" +
|
||||
$"&beginDate={Uri.EscapeDataString(beginDate)}" +
|
||||
$"&endDate={Uri.EscapeDataString(endDate)}";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user