120 lines
3.1 KiB
C#
120 lines
3.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities
|
|
{
|
|
///<summary>
|
|
///生产任务操作记录
|
|
///</summary>
|
|
[SugarTable("prd_mo_task_log")]
|
|
public partial class PrdTaskLog
|
|
{
|
|
public PrdTaskLog()
|
|
{
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:主键
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? create_time { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:扩展字段
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string extras { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:工单号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string mo_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:设备编号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string eqp_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:模具编号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string mold_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:产品编号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string item_code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:产品规格型号
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string item_standard { get; set; }
|
|
|
|
///// <summary>
|
|
///// Desc:设备型号
|
|
///// Default:NULL::character varying
|
|
///// Nullable:True
|
|
///// </summary>
|
|
//public string eqp_type_code {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:任务单状态
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? status { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:操作人姓名
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string operator_name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:创建用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string create_id { get; set; }
|
|
/// <summary>
|
|
/// 生产任务ID
|
|
/// </summary>
|
|
public string mo_task_id { get; set; }
|
|
/// <summary>
|
|
/// 任务单编号
|
|
/// </summary>
|
|
public string mo_task_code { get; set; }
|
|
/// <summary>
|
|
/// 产线Code
|
|
/// </summary>
|
|
[SugarColumn(IsIgnore = true)]
|
|
public string workline_code { get; set; }
|
|
|
|
|
|
}
|
|
}
|