重写预任务申请,任务执行删除功能

This commit is contained in:
alex
2023-07-17 17:06:40 +08:00
parent af91dc8cb3
commit 8c06c4c622
10 changed files with 177 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.WarehouseMgr.Entities.Entity
{
public interface ITaskManagerDel
{
string startlocation_id { get; set; }
string endlocation_id { get; set; }
string carry_id { get; set; }
}
}