using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core.DB.Models;
|
|
namespace WIDESEA_Model.Models
|
{
|
/// <summary>
|
/// 托盘编号信息
|
/// </summary>
|
[SugarTable(nameof(Dt_PalletCodeInfo), "托盘编号信息")]
|
public class Dt_PalletCodeInfo : BaseEntity
|
{
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
|
public int Id { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "仓库主键")]
|
public int WarehouseId { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "托盘类型")]
|
public int PalletType { get; set; }
|
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "托盘编号")]
|
public string PalletCode { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "流水号")]
|
public int SerialNo { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "打印状态")]
|
public int Status { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "尺寸")]
|
public int Size { get; set; }
|
|
[SugarColumn(IsNullable = false, ColumnDescription = "托盘类型主键")]
|
public int PalletTypeId { get; set; }
|
}
|
}
|