重写预任务申请,任务执行删除功能
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -1,13 +1,14 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 任务执行主表
|
||||
/// </summary>
|
||||
public partial class WmsDistaskH
|
||||
public partial class WmsDistaskH : ITaskManagerDel
|
||||
{
|
||||
/// <summary>
|
||||
/// 载具状态
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
using JNPF.Common.Contracts;
|
||||
using JNPF.Common.Security;
|
||||
using SqlSugar;
|
||||
using Tnb.WarehouseMgr.Entities.Entity;
|
||||
|
||||
namespace Tnb.WarehouseMgr.Entities;
|
||||
|
||||
/// <summary>
|
||||
/// 预任务申请主表
|
||||
/// </summary>
|
||||
public partial class WmsPretaskH
|
||||
public partial class WmsPretaskH : ITaskManagerDel
|
||||
{
|
||||
/// <summary>
|
||||
/// 单次搬运数量
|
||||
|
||||
Reference in New Issue
Block a user