using System;
using System.Collections.Generic;
using System.Text;
namespace BarCode.Web.Core.Dto.Box
{
///
/// 老ops箱信息请求
///
public class WmsBoxRequest
{
///
///
///
public WmsBoxRequest() { }
///
///
///
///
///
public WmsBoxRequest(DateTime strartTime, DateTime endTime)
{
this.StrartTime = strartTime;
this.EndTime = endTime;
}
///
/// 开始时间
///
public DateTime? StrartTime { get; set; } = null;
///
/// 结束时间
///
public DateTime? EndTime { get; set; } = null;
///
/// 箱号
///
public string? BoxBillNo { get; set; } = null;
///
/// 页码
///
public int Page { get; set; } = 1;
///
/// 每页条数
///
public int Limit { get; set; } = 10000000;
}
}