using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.fj
{
[Tenant("fj")]
[SugarTable("WCS_CacheLineLoc")]
public class WCSCachelineloc : BaseEntityModel
{
///
/// ID
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")]
public int Id { get; set; }
///
/// 对应的设备号
///
[SugarColumn(ColumnDataType ="smallint" , IsNullable = false , ColumnDescription ="对应的设备号")]
public int LocationNo { get; set; }
///
/// 坐标号
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="坐标号")]
public string XYNo { get; set; }
///
/// 物料号
///
[SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="物料号")]
public string MatCode { get; set; }
///
/// 任务号
///
[SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="任务号")]
public int? TaskId { get; set; }
///
/// 码垛缓存线主表ID
///
[SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛缓存线主表ID")]
public int CacheLineId { get; set; }
///
/// 是否有货
///
[SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否有货")]
public bool InStock { get; set; }
///
/// 是否有货
///
[SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否有货")]
public bool IsEmpty { get; set; }
///
/// 创建时间
///
[SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
public DateTime AddTime { get; set; }
///
/// 编辑时间
///
[SugarColumn(IsNullable = true, ColumnDescription = "编辑时间")]
public DateTime EditTime { get; set; }
}
}