Files
yang.lee 6ce793ea5c 1
2023-12-15 10:00:19 +08:00

19 lines
417 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Dto.Queries
{
public class ElevagorInfoQuery
{
public string taskCode { get; set; }
public string endlocation_id { get; set; }
public string startlocation_id { get; set; }
public string sourceName { get; set; }
}
}