| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 
							- using SqlSugar;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.Text;
 
- namespace wms.sqlsugar.model.pt
 
- {
 
-     [Tenant("pt")]
 
-     [SugarTable("Base_UnitGrp")]
 
-     public partial class ptBaseUnitgrp : BaseModel
 
-     {
 
-         /// <summary> 
 
-         /// WarehouseId
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
 
-         public long WarehouseId { get; set; }
 
-         /// <summary> 
 
-         /// IsStop
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "int", IsNullable = false)]
 
-         public int IsStop { get; set; }
 
-         /// <summary> 
 
-         /// Code
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
 
-         public string Code { get; set; }
 
-         /// <summary> 
 
-         /// Name
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
 
-         public string Name { get; set; }
 
-         /// <summary> 
 
-         /// PId
 
-         /// </summary> 
 
-         [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
 
-         public long PId { get; set; }
 
-     }
 
- }
 
 
  |