using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEbppInspectCreateModel Data Structure. /// [Serializable] public class AlipayEbppInspectCreateModel : AopObject { /// /// 业务类型。由巡检平台统一分配。 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 数据创建者 /// [XmlElement("creator")] public string Creator { get; set; } /// /// 数据来源: 业务系统名称_TrSync /// [XmlElement("data_from_type")] public string DataFromType { get; set; } /// /// 是否同步检测。true-同步检测,false-不需要同步检测。默认false。 /// [XmlElement("is_sync_check")] public bool IsSyncCheck { get; set; } /// /// 外部流程业务标识。一个标识可以同步多条数据。 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 业务服务数据列表 /// [XmlArray("service_list")] [XmlArrayItem("mst_data_sync_service_entity")] public List ServiceList { get; set; } } }