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.
AUCMA_SCADA/Admin.Core.Model/Model_New/BaseQualityInspectionItemIn...

51 lines
1.4 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}