杨前锦
2025-06-04 d44e3abf0d51cfea1ed7df510974d69458cf516d
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.TSSG.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; } // 完成数量
                                               
    }
}