Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -28,7 +28,7 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// 盘点日期
|
||||
/// </summary>
|
||||
[Column("Date")]
|
||||
public DateTime Date { get; set; }
|
||||
public DateTime Date { get; set; } = DateTime.Now;
|
||||
/// <summary>
|
||||
/// 盘点人员
|
||||
/// </summary>
|
||||
|
||||
32
src/WMS.Web.Domain/Infrastructure/IBasicsRepositories.cs
Normal file
32
src/WMS.Web.Domain/Infrastructure/IBasicsRepositories.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using WMS.Web.Core.Dto.SingleData;
|
||||
|
||||
namespace WMS.Web.Domain.Infrastructure
|
||||
{
|
||||
/// <summary>
|
||||
/// 基础数据
|
||||
/// </summary>
|
||||
public interface IBasicsRepositories
|
||||
{
|
||||
/// <summary>
|
||||
/// 获取所有人员-根据主体
|
||||
/// </summary>
|
||||
/// <param name="CompanyId"></param>
|
||||
/// <returns></returns>
|
||||
Task<List<SysStaffResponse>> GetStaffListAsync(int CompanyId);
|
||||
/// <summary>
|
||||
/// 根据仓库获取子仓库
|
||||
/// </summary>
|
||||
/// <param name="id">仓库id</param>
|
||||
/// <returns></returns>
|
||||
Task<List<UcStockResponse>> GetSubUcStockAsync(int id, string name);
|
||||
/// <summary>
|
||||
/// 获取仓库
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
Task<List<UcStockResponse>> GetUcStockAsync(string name, int companyId);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user