using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Wms.Screen.SqlSugar.ZhongTian { [SugarTable("Bill_BomSetGrp")] public class BillBomsetgrp { [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)] public virtual long Id { get; set; } /// /// IsStop /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int IsStop { get; set; } /// /// WarehouseId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long WarehouseId { get; set; } /// /// Code /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string Code { get; set; } /// /// Name /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)] public string Name { get; set; } /// /// BomId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long BomId { get; set; } /// /// BomCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string BomCode { get; set; } /// /// PMatId /// [SugarColumn(ColumnDataType = "bigint", IsNullable = false)] public long PMatId { get; set; } /// /// HWCountQty /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int HWCountQty { get; set; } /// /// TpTypeCode /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string TpTypeCode { get; set; } /// /// LayerCountQty /// [SugarColumn(ColumnDataType = "int", IsNullable = false)] public int LayerCountQty { get; set; } /// /// Memo /// [SugarColumn(ColumnDataType = "nvarchar", Length = 500, IsNullable = true)] public string Memo { get; set; } /// /// AddWho /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string AddWho { get; set; } /// /// AddTime /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false)] public DateTime AddTime { get; set; } /// /// EditWho /// [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)] public string EditWho { get; set; } /// /// EditTime /// [SugarColumn(ColumnDataType = "datetime", IsNullable = false)] public DateTime EditTime { get; set; } /// /// Default1 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Default1 { get; set; } /// /// Default2 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Default2 { get; set; } /// /// Default3 /// [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = true)] public string Default3 { get; set; } } }