You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Admin.Core.Model
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 质检项信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("BASE_QUALITY_INSPECTION_ITEM", "AUCMA_MES")]
|
|
|
|
|
public class BaseQualityInspectionItemInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键标识
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int ObjId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 质检项/质量缺陷编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "QUALITY_DEFECT_CODE")]
|
|
|
|
|
public string? QualityDefectCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 质检项/质量缺陷名字
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "QUALITY_DEFECT_NAME")]
|
|
|
|
|
public string? QualityDefectName { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 父级编号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "PARENT_ID")]
|
|
|
|
|
public string? ParentId { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 启用标识
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "IS_FLAG")]
|
|
|
|
|
public int IsFlag { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 成品下线是否校验(0-不校验;1-校验)
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnName = "IS_INSPECTION")]
|
|
|
|
|
public string? IsInSpection { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|