25 lines
640 B
C#
25 lines
640 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WMS.Web.Core.Dto
|
|
{
|
|
/// <summary>
|
|
/// 老ops箱信息请求
|
|
/// </summary>
|
|
public class OpsBoxRequest
|
|
{
|
|
public OpsBoxRequest() { }
|
|
public OpsBoxRequest(DateTime strartTime,DateTime endTime) {
|
|
this.StrartTime = strartTime;
|
|
this.EndTime = endTime;
|
|
}
|
|
public DateTime StrartTime { get; set; }
|
|
public DateTime EndTime { get; set; }
|
|
public string BoxBillNo { get; set; }
|
|
|
|
public int Page { get; set; } = 1;
|
|
public int Limit { get; set; } = 10000000;
|
|
}
|
|
}
|