using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// InsSceneTaskFlowDTO Data Structure. /// [Serializable] public class InsSceneTaskFlowDTO : AopObject { /// /// 过期时间 /// [XmlElement("expired_time")] public string ExpiredTime { get; set; } /// /// 扩展字段 /// [XmlElement("extra_map")] public string ExtraMap { get; set; } /// /// 任务流水完成时间 /// [XmlElement("finish_time")] public string FinishTime { get; set; } /// /// 创建时间 /// [XmlElement("gmt_create")] public string GmtCreate { get; set; } /// /// 营销任务流水的更新时间 /// [XmlElement("gmt_modified")] public string GmtModified { get; set; } /// /// 活动参与id /// [XmlElement("join_id")] public string JoinId { get; set; } /// /// 营销场景码 /// [XmlElement("marketing_scene")] public string MarketingScene { get; set; } /// /// 外部业务单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 被参与活动的用户id /// [XmlElement("participant_user_id")] public string ParticipantUserId { get; set; } /// /// 参与活动的用户id /// [XmlElement("participator_user_id")] public string ParticipatorUserId { get; set; } /// /// 领取时间 /// [XmlElement("receive_time")] public string ReceiveTime { get; set; } /// /// 任务流水状态 /// [XmlElement("status")] public long Status { get; set; } /// /// 任务流水号 /// [XmlElement("task_flowid")] public string TaskFlowid { get; set; } /// /// 添加状态查询 /// [XmlElement("type")] public string Type { get; set; } } }