| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wms.Screen.SqlSugar.ZhongTian
- {
- [SugarTable("Bill_MachInfo")]
- public class BillMachinfo
- {
- /// <summary>
- /// WarehouseId
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
- public long WarehouseId { get; set; }
- /// <summary>
- /// WareAreaId
- /// </summary>
- [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
- public long WareAreaId { get; set; }
- /// <summary>
- /// IsStop
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int IsStop { get; set; }
- /// <summary>
- /// MachNo
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string MachNo { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
- public string Name { get; set; }
- /// <summary>
- /// GrpCode
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string GrpCode { get; set; }
- /// <summary>
- /// Station
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string Station { get; set; }
- /// <summary>
- /// Direction
- /// </summary>
- [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
- public string Direction { get; set; }
- }
- }
|