1
huangxiaoqiang
2025-10-20 63dcb7fc55d32960f643f4040900ce9a0e33536d
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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.Order
{
    /// <summary>
    /// 打印入库单据表
    ///</summary>
    [SugarTable("Dt_InboundOrder")]
    public class Dt_InboundOrder : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        [SugarColumn(ColumnName= "PrintCode", Length = 255) ]
        public string PrintCode { get; set; }
 
        [SugarColumn(ColumnName = "OrderNo", Length = 255)]
        public string OrderNo { get; set; }
 
        [SugarColumn(ColumnName = "DemandClassification", Length = 255)]
        public string DemandClassification { get; set; }
 
        [SugarColumn(ColumnName = "OrderType", Length = 255)]
        public string OrderType { get; set; }
 
        [SugarColumn(ColumnName = "WarehouseName", Length = 255)]
        public string WarehouseName { get; set; }
 
        [SugarColumn(ColumnName = "Datetime", Length = 255)]
        public string Datetime { get; set; }
 
        [SugarColumn(ColumnName = "LineNumber")]
        public int LineNumber { get; set; }
 
        [SugarColumn(ColumnName = "ProductDrawingNumber", Length = 255)]
        public string ProductDrawingNumber { get; set; }
 
        [SugarColumn(ColumnName = "MaterialNo", Length = 255)]
        public string MaterialNo { get; set; }
 
        [SugarColumn(ColumnName = "MaterialName", Length = 255)]
        public string MaterialName { get; set; }
 
        [SugarColumn(ColumnName = "Weight")]
        public decimal Weight { get; set; }
 
        [SugarColumn(ColumnName = "Specs", Length = 255)]
        public string Specs { get; set; }
 
        [SugarColumn(ColumnName = "Unit", Length = 255)]
        public string Unit { get; set; }
 
        [SugarColumn(ColumnName = "Texture", Length = 255)]
        public string Texture { get; set; }
 
        [SugarColumn(ColumnName = "Quantity")]
        public decimal Quantity { get; set; }
 
        [SugarColumn(ColumnName = "OrderStatus", Length = 255)]
        public string OrderStatus { get; set; }
 
    }
}