using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FixCooperationDTO Data Structure. /// [Serializable] public class FixCooperationDTO : AopObject { /// /// 协作任务的处理结论 /// [XmlElement("conclusion")] public string Conclusion { get; set; } /// /// 协作任务的唯一id /// [XmlElement("cooperation_id")] public long CooperationId { get; set; } /// /// 协作任务的处理完成时间。 /// [XmlElement("deal_time")] public string DealTime { get; set; } /// /// 协作任务的处理说明 /// [XmlElement("description")] public string Description { get; set; } /// /// 实际处理人的名称 /// [XmlElement("duty_owner_name")] public string DutyOwnerName { get; set; } /// /// 协作任务的创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 协作任务的处理方公司名 /// [XmlElement("owner_name")] public string OwnerName { get; set; } /// /// 协作任务的处理结果 /// [XmlElement("result")] public string Result { get; set; } } }