using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayIserviceMindvJobCreateModel Data Structure. /// [Serializable] public class AlipayIserviceMindvJobCreateModel : AopObject { /// /// 任务创建后发布的域名信息,枚举值: ALIPAY(1, "surveys.alipay.com"), ALIBABA_INC(2, "surveys.alibaba-inc.com"), HEMAOS(3, "surveys.hemaos.com"); /// [XmlElement("job_domain")] public string JobDomain { get; set; } /// /// 创建人工号 /// [XmlElement("staff_no")] public string StaffNo { get; set; } /// /// 问卷/试卷标题信息 /// [XmlElement("title")] public string Title { get; set; } /// /// 问卷/试卷类型区别. 枚举值: QUESTION-问卷, EXAM-试卷 /// [XmlElement("type")] public string Type { get; set; } } }