列表查询条件添加

This commit is contained in:
18942506660
2023-10-30 14:22:02 +08:00
parent e4c46444d1
commit a33924648d
6 changed files with 140 additions and 7 deletions

View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Basics
{
/// <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

@@ -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>