生产管理,新增生产提报,自检报废接口
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SqlSugar;
|
||||
|
||||
namespace DbModels
|
||||
{
|
||||
///<summary>
|
||||
///TODO
|
||||
///</summary>
|
||||
[SugarTable("prd_self_test_scrapped_defective_item")]
|
||||
public partial class PrdScrappedDefectiveItem
|
||||
{
|
||||
|
||||
/// <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;}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user