using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// EcoMockGroupInfo Data Structure. /// [Serializable] public class EcoMockGroupInfo : AopObject { /// /// appId /// [XmlElement("app_code")] public string AppCode { get; set; } /// /// 描述 /// [XmlElement("description")] public string Description { get; set; } /// /// id /// [XmlElement("id")] public long Id { get; set; } /// /// 挡板数 /// [XmlElement("mock_count")] public long MockCount { get; set; } /// /// 名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 分组状态: INUSE/UNUSE /// [XmlElement("status")] public string Status { get; set; } } }