杨前锦
2025-05-15 0de17c9615a32b1d83319121179e3f6b725b85c7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HH.WCS.Mobox3.YNJT_PT.models
{
    internal class TN_YiKuDetail : BaseModel
    {
        public string S_NO { get; set; } // 工单号
        public string S_START_AREA { get; set; }  // 起点库区
        public int S_START_ROW { get; set; }  // 起点排  
        public float N_QTY { get; set; }  // 数量
        public string S_END_AREA { get; set; }  // 终点库区    
        public int S_END_ROW { get; set; }  // 终点排
        public float N_COMPLETE_NUM { get; set; } // 完成数量
                                               
    }
}