using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ContractApprovalInfoVO Data Structure. /// [Serializable] public class ContractApprovalInfoVO : AopObject { /// /// 审批附件url列表 /// [XmlArray("file_urls")] [XmlArrayItem("string")] public List FileUrls { get; set; } /// /// 审批环节 /// [XmlElement("node")] public string Node { get; set; } /// /// 审批时间(格式如:2019-08-08 10:00:00) /// [XmlElement("operate_time")] public string OperateTime { get; set; } /// /// 审批人(姓名&花名) /// [XmlElement("operator")] public string Operator { get; set; } /// /// 审批意见 /// [XmlElement("remark")] public string Remark { get; set; } /// /// 审批结果(待审核、通过、驳回) /// [XmlElement("result")] public string Result { get; set; } } }