using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ZhimaCreditEpEntityMonitorUploadModel Data Structure.
///
[Serializable]
public class ZhimaCreditEpEntityMonitorUploadModel : AopObject
{
///
/// 监控实体列表(实体名,实体代码)
///
[XmlElement("entity_list")]
public string EntityList { get; set; }
///
/// 监控实体类别
///
[XmlElement("entity_type")]
public string EntityType { get; set; }
///
/// 监控方案ID,可空
///
[XmlElement("solution_id")]
public string SolutionId { get; set; }
///
/// 芝麻商户2688 ID
///
[XmlElement("zhima_pid")]
public string ZhimaPid { get; set; }
}
}