using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEAWCS_Core.DB.Models;
namespace WIDESEAWCS_Model.Models
{
[SugarTable(nameof(Dt_BoxingDetail), "组盘信息详情表")]
public class Dt_BoxingDetail : BaseEntity
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
public int Id { get; set; }
///
/// 组盘信息主键
///
[SugarColumn(IsNullable = false, ColumnDescription = "组盘信息主键")]
public int BoxingId { get; set; }
///
/// 零件编号
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "零件编号")]
public string ComponentCode { get; set; }
///
/// 零件名称
///
[SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "零件名称")]
public string ComponentName { get; set; }
}
}