杨前锦
2025-05-26 d0a265713fd18162f3a82bdcd22e267df7298c7b
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; } // 完成数量
                                               
    }
}