huanghongfeng
2025-03-06 1c213042c6608c7b5cfc3fd4a801f946dc2d8651
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
39
40
41
42
43
44
45
46
47
48
49
50
using Magicodes.ExporterAndImporter.Core;
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.System
{
    [SugarTable(nameof(Dt_traycodeinfo), "托盘信息")]
    public class Dt_traycodeinfo
    {
        [ImporterHeader(Name = "主键")]
        [SugarColumn(IsPrimaryKey = false, IsIdentity = false, ColumnDescription = "主键")]
        public int traycode_id { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘类型编号")]
        public string traycode_type { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘类型")]
        public string traycode_name { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "创建者")]
        public string traycode_creator { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "创建时间")]
        public DateTime traycode_createtime { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "修改者")]
        public string traycode_updater { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "修改时间")]
        public DateTime traycode_updatetime { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "描述")]
        public string traycode_des { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘物料")]
        public string traycode_materiel { get; set; }
 
        [SugarColumn(IsNullable = true, ColumnDescription = "状态")]
        public int traycode_staute { get; set; }
 
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "托盘条码")]
        public string traycode_code { get; set; }
 
    }
}