This commit is contained in:
tongfei
2023-10-30 15:53:17 +08:00
18 changed files with 483 additions and 22 deletions

View File

@@ -10,11 +10,11 @@ namespace WMS.Web.Core.Dto.ChangeBoxRecord
public class ChangeBoxRecordQueryRequest: PaginationBaseRequestDto
{
/// <summary>
/// 原箱子ID
/// 原箱子
/// </summary>
public string SrcBox { get; set; }
/// <summary>
/// 目标箱子ID
/// 目标箱子
/// </summary>
public string DestBox { get; set; }
/// <summary>

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
/// <summary>
/// 名称请求对象
/// </summary>
public class NameRequest:SingleDataRequest
{
public NameRequest() { }
public NameRequest(string name,int companyId)
{
this.Name = name;
this.CompanyId = companyId;
}
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
}
}

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
/// <summary>
/// 仓位
/// </summary>
public class SubStockRequest:NameRequest
{
public SubStockRequest() { }
public SubStockRequest(int stockId,string name,int companyId)
{
this.StockId = stockId;
this.Name = name;
this.CompanyId = companyId;
}
/// <summary>
/// 仓库ID
/// </summary>
public int StockId { get; set; }
}
}

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
/// <summary>
/// 员工响应
/// </summary>
public class SysStaffResponse
{
/// <summary>
/// StaffID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 部门ID
/// </summary>
public int DeptId { get; set; }
/// <summary>
/// 电话
/// </summary>
public string Telephone { get; set; }
/// <summary>
/// 是否禁用true为禁用false为启用
/// </summary>
public bool Disable { get; set; }
}
}

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Core.Dto.SingleData
{
/// <summary>
/// 仓库响应
/// </summary>
public class UcStockResponse
{
/// <summary>
/// id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 编码
/// </summary>
public string Code { get; set; }
/// <summary>
/// 是否禁用true为禁用false为启用
/// </summary>
public bool Disable { get; set; }
}
}