45 lines
1.0 KiB
C#
45 lines
1.0 KiB
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities
|
|
{
|
|
///<summary>
|
|
///自检报废子表项
|
|
///</summary>
|
|
[SugarTable("self_test_scrapped_item")]
|
|
public partial class SelfTestScrappedItem
|
|
{
|
|
/// <summary>
|
|
/// Desc:主键
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true)]
|
|
public string id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:自检报废id
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string defective_cagetory_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:次品项
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public string defective_item { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:次品项数量
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public int defective_item_qty { get; set; }
|
|
|
|
}
|
|
}
|