目录调整
This commit is contained in:
108
ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdTaskLog.cs
Normal file
108
ProductionMgr/Tnb.ProductionMgr.Entities/Entity/PrdTaskLog.cs
Normal file
@@ -0,0 +1,108 @@
|
||||
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 task_id { get;set;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user