using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Model { /// /// trs交易端客户资金监控请求 /// public class ClientBalanceMonitorFroTrsRequest { /// /// 查询客户集合 /// public List ClientIds { get; set; }=new List(); /// /// 查询天数 0默认为当前 /// public int SearchDays { get; set; } } }