wujianwei
12 小时以前 2cf82c1c1959701fe7d31b3d891434575ed6b58f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.cwgl.service;
 
/**
 * CMBS银行流水同步Service接口
 *
 * @author ruoyi
 * @date 2026-04-15
 */
public interface ICmbsBankSyncService {
 
    /**
     * 从CMBS同步指定账号的交易明细到资金流水表
     *
     * @param acctNum 账号
     * @param startDate 开始日期 yyyy-MM-dd
     * @param endDate 结束日期 yyyy-MM-dd
     * @return 同步结果信息
     */
    String syncFromCmbs(String acctNum, String startDate, String endDate);
}