wangxinhui
2025-01-02 d8fb32976a4d382fc37d12c652639c1015b9111e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
{
    [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; }
    }
}