1
yanjinhui
2025-09-24 bd09f6b4fdb821c9fb63e4dd0e9b184d29e9f148
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
//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.SquareCabinWCS
//{
//    [SugarTable("Dt_EdiOutDetail", "出库详细单")]
//    public class Dt_EdiOutDetail:BaseEntity
//    {
//        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
//        public int Id { get; set; }
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "外部出库单号")]
//        public string ExternalOrderNo { get; set; } = string.Empty;
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "批号")]
//        public string BatchNo { get; set; } = string.Empty;
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品编码")]
//        public string ProductCode { get; set; }
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品名称")]
//        public string ProductName { get; set; }
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "产品规格")]
//        public string ProductSpecifications { get; set; }
 
//        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "数量")]
//        public int Quantity { get; set; }
//    }
//}