123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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
- {
- /// <summary>
- /// ID
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "ID")]
- public int Id { get; set; }
- /// <summary>
- /// 对应的设备号
- /// </summary>
- [SugarColumn(ColumnDataType ="smallint" , IsNullable = false , ColumnDescription ="对应的设备号")]
- public int LocationNo { get; set; }
- /// <summary>
- /// 坐标号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="坐标号")]
- public string XYNo { get; set; }
- /// <summary>
- /// 物料号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="物料号")]
- public string MatCode { get; set; }
- /// <summary>
- /// 任务号
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = true , ColumnDescription ="任务号")]
- public int? TaskId { get; set; }
- /// <summary>
- /// 码垛缓存线主表ID
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛缓存线主表ID")]
- public int CacheLineId { get; set; }
- /// <summary>
- /// 是否有货
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否有货")]
- public bool InStock { get; set; }
- /// <summary>
- /// 是否有货
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否有货")]
- public bool IsEmpty { get; set; }
- /// <summary>
- /// 创建时间
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "创建时间")]
- public DateTime AddTime { get; set; }
- /// <summary>
- /// 编辑时间
- /// </summary>
- [SugarColumn(IsNullable = true, ColumnDescription = "编辑时间")]
- public DateTime EditTime { get; set; }
- }
- }
|