20 lines
462 B
C#
20 lines
462 B
C#
using JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessDto;
|
|||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessParam
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 新卷入库参数
|
||
|
|
/// </summary>
|
||
|
|
public class PaperStorageQueryParam : BusinessParamBase
|
||
|
|
{
|
||
|
|
public DateTime StartTime { get; set; }
|
||
|
|
|
||
|
|
public DateTime EndTime { get; set; }
|
||
|
|
}
|
||
|
|
}
|