using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
///
///
///
[SugarTable("Dt_LocationInfo")]
public class Dt_LocationInfo : BaseEntity
{
///
/// 备 注:货位ID
/// 默认值:
///
[SugarColumn(ColumnName="LocationID" ,IsPrimaryKey = true) ]
public Guid LocationID { get; set; }
///
/// 备 注:库区编号
/// 默认值:
///
[SugarColumn(ColumnName = "WareAreaCode")]
public string WareAreaCode { get; set; } = null!;
///
/// 备 注:货位编号
/// 默认值:
///
[SugarColumn(ColumnName="LocationCode" ) ]
public string LocationCode { get; set; } = null!;
///
/// 备 注:货位名称
/// 默认值:
///
[SugarColumn(ColumnName="LocationName" ) ]
public string? LocationName { get; set; }
///
/// 备 注:巷道编号
/// 默认值:
///
[SugarColumn(ColumnName="RoadwayNO" ) ]
public string RoadwayNO { get; set; } = null!;
///
/// 备 注:行
/// 默认值:
///
[SugarColumn(ColumnName="Line" ) ]
public string? Line { get; set; }
///
/// 备 注:列
/// 默认值:
///
[SugarColumn(ColumnName="Column" ) ]
public string? Column { get; set; }
///
/// 备 注:层
/// 默认值:
///
[SugarColumn(ColumnName="Layer" ) ]
public string? Layer { get; set; }
///
/// 备 注:巷道
/// 默认值:
///
[SugarColumn(ColumnName="Roadway" ) ]
public string? Roadway { get; set; }
///
/// 备 注:深度
/// 默认值:
///
[SugarColumn(ColumnName="Depth" ) ]
public string? Depth { get; set; }
///
/// 备 注:对应堆垛机号
/// 默认值:
///
[SugarColumn(ColumnName="SCNo" ) ]
public string? SCNo { get; set; }
///
/// 备 注:堆垛机对应货位站台号
/// 默认值:
///
[SugarColumn(ColumnName="SClocationID" ) ]
public string? SClocationID { get; set; }
///
/// 备 注:货位类型(1,单深 2,多深)
/// 默认值:
///
[SugarColumn(ColumnName="LocationType" ) ]
public string? LocationType { get; set; }
///
/// 备 注:是否被锁定
/// 默认值:
///
[SugarColumn(ColumnName="IsLocked" ) ]
public bool? IsLocked { get; set; }
///
/// 备 注:货位状态(0,空闲 2,占用)
/// 默认值:
///
[SugarColumn(ColumnName="Status" ) ]
public int? Status { get; set; }
///
/// 备 注:货位描述
/// 默认值:
///
[SugarColumn(ColumnName="LocationDesc" ) ]
public string? LocationDesc { get; set; }
///
/// 备 注:是否删除
/// 默认值:
///
[SugarColumn(ColumnName="IsDelete" ) ]
public bool? IsDelete { get; set; }
///
/// 备 注:备注
/// 默认值:
///
[SugarColumn(ColumnName="Remark" ) ]
public string? Remark { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="Spare1" ) ]
public string? Spare1 { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="Spare2" ) ]
public string? Spare2 { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="Spare3" ) ]
public string? Spare3 { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="Spare4" ) ]
public string? Spare4 { get; set; }
///
/// 备 注:
/// 默认值:
///
[SugarColumn(ColumnName="Spare5" ) ]
public string? Spare5 { get; set; }
}
}