using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataDataserviceBillDingstaffbizorderQueryModel Data Structure. /// [Serializable] public class AlipayDataDataserviceBillDingstaffbizorderQueryModel : AopObject { /// /// 钉钉业务单据号 /// [XmlElement("biz_trans_id")] public string BizTransId { get; set; } /// /// 业务类型标识。支持类型有:0100-群收款,0101-报销,0102-支付,0103-收款,0104-转账,0105-工资 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 资金流向。S表示收入,B表示支出 /// [XmlElement("direction")] public string Direction { get; set; } /// /// 查询结束时间, 日期格式:2018-09-30 00:00:00, 开区间, 默认当前时间点 最多查一年内的数据 /// [XmlElement("gmt_date_end")] public string GmtDateEnd { get; set; } /// /// 查询开始时间, 日期格式:2018-07-30 00:00:00, 闭区间 最多查一年内的数据 /// [XmlElement("gmt_date_start")] public string GmtDateStart { get; set; } /// /// 上次查询最后一笔id, 翻页查询需要带上上次查询最后一笔的id /// [XmlElement("last_id")] public string LastId { get; set; } /// /// 支付宝流水号 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 分页大小,[0-100], 最大不超过100, 默认20 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 标题,对收支场景描述 /// [XmlElement("title")] public string Title { get; set; } /// /// 支付宝虚拟uid /// [XmlElement("virtual_user_id")] public string VirtualUserId { get; set; } } }