去掉不要的

This commit is contained in:
tongfei
2024-04-13 11:30:47 +08:00
parent 250d2c5369
commit 97deca1c95
4 changed files with 0 additions and 44 deletions

View File

@@ -88,18 +88,5 @@ namespace WMS.Web.Domain.Entitys
/// </summary>
public string CustomerCode { get; set; }
/// <summary>
/// 是否已发送
/// </summary>
public bool? IsHasSend { get; set; } = false;
/// <summary>
/// 标记已发送
/// </summary>
public void HasSend()
{
this.IsHasSend = true;
}
}
}

View File

@@ -148,11 +148,5 @@ namespace WMS.Web.Domain.Infrastructure
/// <param name="isTransaction"></param>
/// <returns></returns>
Task<InStockTask> Update(InStockTask entity, bool isTransaction = true);
/// <summary>
/// 获取明细
/// </summary>
/// <returns></returns>
Task<List<InStockTaskDetails>> GetNotSendErpDetails();
}
}