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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// bom设置
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("SM_SYNCMODELSUB", "AUCMA_SCADA")]
|
|
|
|
|
public class SmSyncModelSub
|
|
|
|
|
{
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_SYNCMODELSUB")]
|
|
|
|
|
public int ObjId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品型号编码——主键产品型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "SM_PRODUCTID")]
|
|
|
|
|
public string SmProductId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品型号编码——主键产品型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "ORDER_CODE")]
|
|
|
|
|
public string OrderCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 产品型号编码——主键产品型号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PLAN_CODE")]
|
|
|
|
|
public string PlanCode { 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_MODEL")]
|
|
|
|
|
public string MaterialModel { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 创建时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "CREATE_TIME")]
|
|
|
|
|
public DateTime CreateTime { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|