生产管理,新增生产提报,自检报废接口
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using SqlSugar;
|
||||
|
||||
namespace DbModels
|
||||
{
|
||||
///<summary>
|
||||
///TODO
|
||||
///</summary>
|
||||
[SugarTable("prd_self_test_scrapped_defective_cagetory")]
|
||||
public partial class PrdScrappedDefectiveCagetory
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Desc:编号
|
||||
/// Default:
|
||||
/// Nullable:False
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true)]
|
||||
public string id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:任务单号
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string icmo_code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:次品分类
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string defective_category { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:分类数量
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public int? category_qty { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建用户
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public string create_id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Desc:创建时间
|
||||
/// Default:
|
||||
/// Nullable:True
|
||||
/// </summary>
|
||||
public DateTime? create_time { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user