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