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.
19 lines
387 B
19 lines
387 B
namespace SBF.Model.Dto
|
|
{
|
|
public class QueryTrusteeshipRequest
|
|
{
|
|
public Enums.Stage? Stage { 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; }
|
|
}
|
|
}
|
|
|