namespace SBF.Model.Dto { public class QueryTrusteeshipRequest { public Enums.Stage? Stage { get; set; } /// /// 业务类型/渠道 快车=2,智能投放=134217728 /// public int BusinessType { 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; } } }