wankeda
2025-12-29 60fb2fdfaddceda64b934b2167ca255f8c3579b8
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models
{
    [SugarTable(nameof(Dt_CPInboundOrderDetail), "成品入库单箱明细")]
    public class Dt_CPInboundOrderDetail : BaseEntity
    {
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "入库明细ID")]
        public int OrderDetailId { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "箱ID")]
        public float BoxId { get; set; }
 
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "箱号")]
        public string BoxCode { get; set; }
 
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "周期码")]
        public string DateCode { get; set; }
 
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "生产型号")]
        public string PartNum { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "物料ID")]
        public float JobId { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "PCS数量")]
        public float QtyOfpcs { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "叉板数")]
        public float QtyOfxout { get; set; }
 
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int CPOrderDetailStatus { get; set; }
    }
}