26 lines
825 B
C#
26 lines
825 B
C#
![]() |
using Seyounth.Hyosung.Data.Models;
|
||
|
using SqlSugar;
|
||
|
|
||
|
namespace Seyounth.Hyosung.Data.Entities;
|
||
|
|
||
|
[SugarTable("system_pallet", "托盘纸盘规格表")]
|
||
|
public class PalletEntity
|
||
|
{
|
||
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "板类型")]
|
||
|
public PalletType Type { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "长")] public int Length { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "宽")] public int Width { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "高")] public int Height { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "孔数量", IsNullable = true)]
|
||
|
public int? HoleCount { get; set; }
|
||
|
|
||
|
[SugarColumn(ColumnDescription = "是否是大孔", IsNullable = true)]
|
||
|
public bool? IsBigHole { get; set; }
|
||
|
}
|