2025-03-28 09:07:17 +08:00

35 lines
771 B
C#

using SqlSugar;
namespace Seyounth.Hyosung.Data.Entities;
public class StorageBinEntity
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string BinName { get; set; }
public string LowerBinCode { get; set; }
[SugarColumn(IsNullable = true)] public string? UpperBinCode { get; set; }
public bool IsDouble { get; set; }
public int BinStatus { get; set; }
public int LowerCtnrCode { get; set; }
[SugarColumn(IsNullable = true)]
public int UpperCtnrCode { get; set; }
[SugarColumn(IsNullable = true)] public bool NeedSameLot { get; set; } = false;
public int BindLot { get; set; } = 0;
public int BinPosition { get; set; }
public int Sort { get; set; }
}