提交代码

This commit is contained in:
hehaibing-1996
2024-07-16 16:45:18 +08:00
parent ed3673db03
commit 7b8a885669
64 changed files with 1389 additions and 176 deletions

View 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; }
}
}

View File

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

View 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; }
}
}

View File

@ -21,7 +21,6 @@ namespace WCS.Model.ApiModel.StoreInfo
/// 货架当前状态
/// </summary>
public int CurrentMode { get; set; }
/// <summary>
/// 货架行数
/// </summary>

View File

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