72 lines
1.8 KiB
C#
72 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.QcMgr.Entities.Entity
|
|
{
|
|
/// <summary>
|
|
/// 质检执行载具表
|
|
/// </summary>
|
|
[SugarTable("qc_check_exec_carry")]
|
|
public class QcCheckExecCarry:BaseEntity<string>
|
|
{
|
|
public QcCheckExecCarry()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
|
|
public string org_id { get; set; }
|
|
/// <summary>
|
|
/// 质检主表id
|
|
/// </summary>
|
|
public string qc_check_exec_id { get;set; }
|
|
|
|
public string carry_id { get; set; }
|
|
|
|
public string carry_code { get; set; }
|
|
|
|
public string warehouse_id { get; set; }
|
|
|
|
public string qty { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string status { get;set; }
|
|
/// <summary>
|
|
/// 库位
|
|
/// </summary>
|
|
public string location_id { get; set; }
|
|
|
|
public string location_code { get; set; }
|
|
/// <summary>
|
|
/// 物料id
|
|
/// </summary>
|
|
public string material_id { get;set; }
|
|
/// <summary>
|
|
/// 暂控处理单id
|
|
/// </summary>
|
|
public string temp_control_order_id { get; set; }
|
|
/// <summary>
|
|
/// 提报人
|
|
/// </summary>
|
|
public string reporter_id { get;set;}
|
|
/// <summary>
|
|
/// 处理人id
|
|
/// </summary>
|
|
public string processer_id { get;set; }
|
|
|
|
public string create_id { get;set ; }
|
|
|
|
public DateTime? create_time { get;set; }
|
|
|
|
public string modify_id { get;set; }
|
|
|
|
public DateTime? modify_time { get;set; }
|
|
}
|
|
}
|