提交代码
This commit is contained in:
18
WCS.Model/ApiModel/Home/GetShelfServerResponse.cs
Normal file
18
WCS.Model/ApiModel/Home/GetShelfServerResponse.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.Home
|
||||
{
|
||||
public class GetShelfServerResponse : ResponseBase<List<GetShelfServerResponseItem>>
|
||||
{
|
||||
public List<GetShelfServerResponseItem> Data { get; set; }
|
||||
}
|
||||
|
||||
public class GetShelfServerResponseItem
|
||||
{
|
||||
public string BigShelfCode { get; set; }
|
||||
|
||||
public string ServerIp { get; set; }
|
||||
}
|
||||
}
|
@ -29,6 +29,9 @@ namespace WCS.Model
|
||||
|
||||
public string ModulesStr { get; set; }
|
||||
|
||||
public string? CurrentCom { get; set; } = string.Empty;
|
||||
|
||||
public DateTime SetCurrentModeTime { get; set; }
|
||||
/// <summary>
|
||||
/// 货架组别
|
||||
/// </summary>
|
||||
|
13
WCS.Model/ApiModel/StoreInfo/CalibrationSetOffsetRequest.cs
Normal file
13
WCS.Model/ApiModel/StoreInfo/CalibrationSetOffsetRequest.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace WCS.Model.ApiModel.StoreInfo
|
||||
{
|
||||
public class CalibrationSetOffsetRequest : RequestBase
|
||||
{
|
||||
public List<int> MouduleIds { get; set; }
|
||||
|
||||
public int OffSet { get; set; }
|
||||
}
|
||||
}
|
@ -21,7 +21,6 @@ namespace WCS.Model.ApiModel.StoreInfo
|
||||
/// 货架当前状态
|
||||
/// </summary>
|
||||
public int CurrentMode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 货架行数
|
||||
/// </summary>
|
||||
|
@ -21,10 +21,17 @@ namespace WCS.Model.ApiModel
|
||||
public List<int> RoleIds { get; set; } = new List<int>();
|
||||
|
||||
public List<string> RoleNames { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否最大权限
|
||||
/// 是否最大权限管理员
|
||||
/// </summary>
|
||||
public bool IsAdmin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否是工程研发人员
|
||||
/// </summary>
|
||||
public bool IsGCYF { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user