You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HighWayIot.Repository.domain
|
|
{
|
|
[SugarTable("BASE_BOMINFO")]
|
|
public class BaseBomInfo
|
|
{
|
|
/// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "OBJID", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int objId { get; set; }
|
|
|
|
/// <summary>
|
|
/// BOM编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BOM_CODE")]
|
|
public string bomCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_CODE")]
|
|
public string materialCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_NAME")]
|
|
public string materialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料类别
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATERIAL_TYPE")]
|
|
public string materialType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标准数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "STANDARD_AMOUNT")]
|
|
public int standardAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父级编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PARENT_ID")]
|
|
public int parentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工厂编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PLANT_CODE")]
|
|
public string plantCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产线/工位
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCTLINE_CODE")]
|
|
public string productLineCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否标识
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IS_FLAG")]
|
|
public int isFlag { get; set; }
|
|
}
|
|
}
|