using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.QuarztJobs.Interface
{
public interface IBankStatementService
{
///
/// 定时获取银行流水数据
///
///
///
///
Task GetBankStatement();
}
}