You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
namespace SBF.Model.Dto
|
|
|
|
{
|
|
|
|
public class QueryTrusteeshipRequest
|
|
|
|
{
|
|
|
|
public Enums.Stage? Stage { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 业务类型/渠道 快车=2,智能投放=134217728
|
|
|
|
/// </summary>
|
|
|
|
public int BusinessType { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 是否结束 1结束 0未结束 null两者都包含
|
|
|
|
/// </summary>
|
|
|
|
public int? IsEnd { get; set; }
|
|
|
|
|
|
|
|
public long? ShopId { get; set; }
|
|
|
|
|
|
|
|
public string Spu { get; set; }
|
|
|
|
|
|
|
|
public string Sku { get; set; }
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
public int PageIndex { get; set; }
|
|
|
|
|
|
|
|
public int PageSize { get; set; }
|
|
|
|
}
|
|
|
|
}
|