using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MybankCreditSupplychainCreditpaySyncnameCreateModel Data Structure. /// [Serializable] public class MybankCreditSupplychainCreditpaySyncnameCreateModel : AopObject { /// /// 报名时间/取消时间 /// [XmlElement("apply_time")] public string ApplyTime { get; set; } /// /// 渠道标签 /// [XmlElement("channel_tag")] public string ChannelTag { get; set; } /// /// 操作类型: APPLY:报名申请; CANCEL:取消报名 /// [XmlElement("handle_type")] public string HandleType { get; set; } /// /// 营销结束时间 /// [XmlElement("promo_end_time")] public string PromoEndTime { get; set; } /// /// 营销开始时间 /// [XmlElement("promo_start_time")] public string PromoStartTime { get; set; } /// /// 营销类型, 长账期:LONG_TERM /// [XmlElement("promo_type")] public string PromoType { get; set; } /// /// 营销值, 长账期:2 /// [XmlElement("promo_value")] public string PromoValue { get; set; } /// /// 请求幂等控制ID,以isv的ipRoleId_为前缀 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 1688商铺ID /// [XmlElement("scene_user_id")] public string SceneUserId { get; set; } /// /// 卖家信息 /// [XmlElement("seller")] public Member Seller { get; set; } } }