Merge branch 'master' of https://codeup.aliyun.com/62ce7bca487c500c27f70a79/OPS/WMS-Api
This commit is contained in:
@@ -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>
|
||||
|
||||
25
src/WMS.Web.Core/Dto/SingleData/NameRequest.cs
Normal file
25
src/WMS.Web.Core/Dto/SingleData/NameRequest.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
26
src/WMS.Web.Core/Dto/SingleData/SubStockRequest.cs
Normal file
26
src/WMS.Web.Core/Dto/SingleData/SubStockRequest.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
37
src/WMS.Web.Core/Dto/SingleData/SysStaffResponse.cs
Normal file
37
src/WMS.Web.Core/Dto/SingleData/SysStaffResponse.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
32
src/WMS.Web.Core/Dto/SingleData/UcStockResponse.cs
Normal file
32
src/WMS.Web.Core/Dto/SingleData/UcStockResponse.cs
Normal 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; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user