1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- using System;
- using System.Collections.Generic;
- using SqlSugar;
- using WMS.BZModels;
- namespace wms.sqlsugar.model.fj
- {
- [Tenant("fj")]
- [SugarTable("WCS_PalletizingLoc")]
- public class WCSPalletizingloc : BaseEntityModel
- {
- /// <summary>
- /// Id
- /// </summary>
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "Id")]
- public int Id { get; set; }
- /// <summary>
- /// 码垛位信息表Id
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛位信息表Id")]
- public int PalletizingRowId { get; set; }
- /// <summary>
- /// 码垛位信息表Id
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="码垛位信息表Id")]
- public int PalletizingId { get; set; }
- /// <summary>
- /// 任务Id
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="任务Id")]
- public int TaskId { get; set; }
- /// <summary>
- /// 是否空置
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否空置")]
- public bool IsEmpty { 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 = true , ColumnDescription ="所属设备号")]
- public string DevCode { get; set; }
- /// <summary>
- /// 物料编码
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="物料编码")]
- public string MatCode { get; set; }
- /// <summary>
- /// 正反面
- /// </summary>
- [SugarColumn(ColumnDataType ="int" , IsNullable = false , ColumnDescription ="正反面")]
- public int SideNum { get; set; }
- /// <summary>
- /// 工字轮类型
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = false , ColumnDescription ="工字轮类型")]
- public string SpoolType { get; set; }
- /// <summary>
- /// 是否结束
- /// </summary>
- [SugarColumn(ColumnDataType ="bit" , IsNullable = false , ColumnDescription ="是否结束")]
- public bool Finish { get; set; }
- /// <summary>
- /// 仓库编号
- /// </summary>
- [SugarColumn(ColumnDataType ="varchar" , Length = 255 , IsNullable = true , ColumnDescription ="仓库编号")]
- public string WarehouseCode { get; set; }
- }
- }
|