zhangzhuo a4fc1b7c9c 增加功能:
1、增加可选是否上传至甲方数据库
2、增加AGV库位管理功能
2025-06-02 17:15:40 +08:00

40 lines
1.2 KiB
C#

using CommunityToolkit.Mvvm.ComponentModel;
using SqlSugar;
namespace Seyounth.Hyosung.Data.Entities;
[SugarTable("system_agv_bin", TableDescription = "AGV库位")]
public class AgvBinEntity
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
[SugarColumn(ColumnDescription = "库位编码")]
public string BinCode { get; set; }
[SugarColumn(ColumnDescription = "控制编码")]
public string CtnrCode { get; set; }
[SugarColumn(ColumnDescription = "控制类型")]
public int CtnrType { get; set; }
[SugarColumn(ColumnDescription = "库位类型")]
public int RackType { get; set; }
[SugarColumn(ColumnDescription = "是否空闲")]
public bool IsFree { get; set; }
[SugarColumn(ColumnDescription = "库位高度")]
public int Height { get; set; }
[SugarColumn(ColumnDescription = "上次使用时间")]
public DateTime? LastBindTime { get; set; }
[SugarColumn(ColumnDescription = "排序")]
public int Sort { get; set; }
[SugarColumn(IsNullable =true)]
public string HeightCode { get; set; }
public bool IsDeleted { get; set; }
}