123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class AlipayContract : AopObject
- {
-
-
-
- [XmlElement("alipay_user_id")]
- public string AlipayUserId { get; set; }
-
-
-
- [XmlElement("contract_content")]
- public string ContractContent { get; set; }
-
-
-
- [XmlElement("end_time")]
- public string EndTime { get; set; }
-
-
-
- [XmlElement("page_url")]
- public string PageUrl { get; set; }
-
-
-
- [XmlElement("start_time")]
- public string StartTime { get; set; }
-
-
-
- [XmlElement("subscribe")]
- public bool Subscribe { get; set; }
- }
- }
|