51 lines
1.4 KiB
C#
51 lines
1.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiSalesLeadsSaleleadsCreateModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiSalesLeadsSaleleadsCreateModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 销售Leads关联的业务主体id
|
||
/// </summary>
|
||
[XmlElement("biz_id")]
|
||
public string BizId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 销售业务主体类型,SHOP_INFO已开店,SHOP_LEADS未开店
|
||
/// </summary>
|
||
[XmlElement("biz_principle_type")]
|
||
public string BizPrincipleType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 需要给销售Leads打上的标签Code,数组
|
||
/// </summary>
|
||
[XmlArray("leads_tags")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> LeadsTags { get; set; }
|
||
|
||
/// <summary>
|
||
/// 销售Leads类型
|
||
/// </summary>
|
||
[XmlElement("leads_type")]
|
||
public string LeadsType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
[XmlElement("memo")]
|
||
public string Memo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 调用方请求id,业务请求相同时应保持一致,用于幂等
|
||
/// </summary>
|
||
[XmlElement("request_id")]
|
||
public string RequestId { get; set; }
|
||
}
|
||
}
|