using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
///
///TODO
///
[SugarTable("prd_mo_task_defect")]
public partial class PrdMoTaskDefect
{
public PrdMoTaskDefect(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string id {get;set;} = SnowflakeIdHelper.NextId();
///
/// Desc:任务单id
/// Default:
/// Nullable:True
///
public string? mo_task_id {get;set;}
///
/// Desc:创建用户
/// Default:
/// Nullable:True
///
public string? create_id {get;set;}
///
/// Desc:创建时间
/// Default:
/// Nullable:True
///
public DateTime? create_time {get;set;}
///
/// Desc:次品分类id
/// Default:
/// Nullable:True
///
public string? defective_cagetory_id {get;set;}
///
/// Desc:次品项
/// Default:
/// Nullable:True
///
public string? defective_item {get;set;}
///
/// Desc:次品项数量
/// Default:
/// Nullable:True
///
public int? defective_item_qty {get;set;}
///
/// Desc:批次
/// Default:
/// Nullable:True
///
public string? batch {get;set;}
}
}