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.

15 lines
300 B

namespace BBWYB.Server.Model.Dto
{
public class QueryTimeOutRequest
{
public DateTime StartDate { get; set; }
public DateTime EndDate { get; set; }
/// <summary>
/// 店铺Id 可空
/// </summary>
public long? ShopId { get; set; }
}
}