Files
wcs/WCS.Model/ApiModel/Home/ResetShelfStatusRequest.cs
hehaibing-1996 ac14b22507 1.前后端增加复位功能
2.tcpclient心跳设置
3.优化后端启动速度
4.增加后端出库日志
2024-05-28 17:48:48 +08:00

16 lines
323 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.Home
{
public class ResetShelfStatusRequest : RequestBase
{
public List<int> SelfIds { get; set; }
public bool IsResetAll { get; set; }
public List<string> GroupNames { get; set; }
}
}