113 lines
3.0 KiB
C#
113 lines
3.0 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities
|
|
{
|
|
///<summary>
|
|
///维修回流工序
|
|
///</summary>
|
|
[SugarTable("prd_repair_reflow")]
|
|
public partial class PrdRepairReflow
|
|
{
|
|
public PrdRepairReflow(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:编号
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true)]
|
|
public string id {get;set;} = SnowflakeIdHelper.NextId();
|
|
|
|
/// <summary>
|
|
/// Desc:所属组织
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? org_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:GUID
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string repair_id {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:产品代码
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string r_card {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:工序代码
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public string process_code {get;set;} = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Desc:工序顺序
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int process_seq {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:是否已回流执行
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
public int is_pass {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:时间戳
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? time_stamp {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? create_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? create_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:修改用户
|
|
/// Default:NULL::character varying
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? modify_id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:修改时间
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? modify_time {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:扩展字段
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string? extras {get;set;}
|
|
|
|
}
|
|
}
|