123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Domain
- {
-
-
-
- [Serializable]
- public class ZhimaRiskDetail : AopObject
- {
-
-
-
- [XmlElement("risk_code")]
- public string RiskCode { get; set; }
-
-
-
- [XmlElement("risk_type")]
- public string RiskType { get; set; }
-
-
-
- [XmlElement("statement")]
- public string Statement { get; set; }
-
-
-
- [XmlElement("status")]
- public string Status { get; set; }
-
-
-
- [XmlElement("type")]
- public string Type { get; set; }
- }
- }
|