using System;
using System.Collections.Generic;
namespace BBWY.Server.Model.Dto
{
public class AuditOrderRequest
{
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
public IList<long> ShopIdList { get; set; }
}
}