using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Server.Model.Dto
{
public class QueryPromotionTaskRequest
{
///
/// 页数,从1开始
///
public int PageIndex { get; set; }
///
/// 页码,每页条数
///
public int PageSize { get; set; }
public long ShopId { get; set; }
public Enums.PromitionTaskStatus? Status { get; set; }
}
public class QueryPromotionTaskByIdRequest : StartPromotionTaskRequest
{
}
}