Files
2023-11-06 19:35:59 +08:00

11 lines
266 B
C#

namespace Tnb.WarehouseMgr.Entities.Entity
{
public interface ITaskManagerDel
{
string startlocation_id { get; set; }
string endlocation_id { get; set; }
string carry_id { get; set; }
string area_code { get; set; }
}
}