using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ValidStrategy Data Structure. /// [Serializable] public class ValidStrategy : AopObject { /// /// 失效时间 /// [XmlElement("gmt_invalid")] public string GmtInvalid { get; set; } /// /// 签约时间 /// [XmlElement("gmt_sign")] public string GmtSign { get; set; } /// /// 生效日期 /// [XmlElement("gmt_valid")] public string GmtValid { get; set; } /// /// 失效方式: 01:到期失效 02:通知失效 03:截止日期失效 /// [XmlElement("invalid_type")] public string InvalidType { get; set; } /// /// 生效类型: 01:立即生效 02:通知生效 03:预约生效 04:倒签生效 /// [XmlElement("valid_type")] public string ValidType { get; set; } } }