!提交代码

This commit is contained in:
hehaibing-1996
2024-04-15 18:43:28 +08:00
commit e89b64ea3a
232 changed files with 22292 additions and 0 deletions

View File

@ -0,0 +1,77 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WCS.DAL.DbModels
{
public partial class StoreInfo
{
/// <summary>
/// 库位Id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 库位编码
/// </summary>
public string StoreCode { get; set; }
/// <summary>
/// 模组Id
/// </summary>
public int ModuleId { get; set; }
/// <summary>
/// 模组编号
/// </summary>
public string ModuleCode { get; set; }
/// <summary>
/// 货架Id
/// </summary>
public int ShelfId { get; set; }
/// <summary>
/// 货架号
/// </summary>
public string ShelfCode { get; set; }
/// <summary>
/// 板子的Id
/// </summary>
public int BoardId { get; set; }
/// <summary>
/// 板子上第几个灯
/// </summary>
public int LightNumber { get; set; }
/// <summary>
/// 优先级;为钢网柜推荐库位预留
/// </summary>
public int Priority { get; set; }
/// <summary>
/// 当前物料;货架这种一对一且带检测的就给这个赋值,方便出入库时的查询
/// </summary>
public string CurrentMatSn { get; set; }
/// <summary>
/// 当前电压;当前电压,调试排查问题用
/// </summary>
public decimal CurrentVoltage { get; set; }
/// <summary>
/// 标准电压;标准电压,调试排查问题用
/// </summary>
public decimal StandardVoltage { get; set; }
/// <summary>
/// 偏差电压;偏差电压,调试排查问题用
/// </summary>
public decimal OffsetVoltage { get; set; }
}
}