kazelee
2025-05-21 5ad394cf1708a4629f90f40bfd9b48d9a9f6f0c8
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.DSZSH.models {
    /// <summary>
    /// 出库单
    /// </summary>
    public class TN_Inbound_Order {
 
        /// <summary>
        /// 物料号
        /// </summary>
        public string S_CG_CODE { get; set; }
 
        /// <summary>
        /// 容器编码
        /// </summary>
        public string S_CNTR_CODE { get; set; }
 
        /// <summary>
        /// 入库单状态:0未下线 1等待执行 2完成
        /// </summary>
        public string S_B_STATE { get; set; }
    }
}