87 lines
2.2 KiB
C#
87 lines
2.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MDM.Models.Process
|
|
{
|
|
/// <summary>
|
|
/// 工序流程 物料参数
|
|
/// </summary>
|
|
[SugarTable("process_operation_flow_material_paramter")]
|
|
public class ProcessOperationFlowMaterialParamter
|
|
{
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
public int id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属工艺路线code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_routing_code")]
|
|
public string FkRoutingCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属工序code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_operation_code")]
|
|
public string FkOperationCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 所属流程code
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "fk_flow_code")]
|
|
public string FkFlowCode { 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 = "use_error_proof_rule_code")]
|
|
public string UseErrorProofRuleCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_by")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_by")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
}
|
|
}
|