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.
64 lines
1.6 KiB
C#
64 lines
1.6 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Admin.Core.Model.Model_New
|
|
{
|
|
/// <summary>
|
|
/// SAP BOM 信息
|
|
/// </summary>
|
|
[SugarTable("BASE_BOMINFO", "AUCMA_MES")]
|
|
public class OrderBomInfo
|
|
{ /// <summary>
|
|
/// 主键标识
|
|
///</summary>
|
|
[SugarColumn(ColumnName = "OBJ_ID", 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 string ParentId { get; set; }
|
|
/// <summary>
|
|
/// 是否标识
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "IS_FLAG")]
|
|
public int IsFlag { get; set; }
|
|
|
|
}
|
|
}
|