schangxiang@126.com
2025-09-10 6bb25a0e2443749c07834048c4afab136dff7a67
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace yunneiPda.EnumDefine
{
    /// <summary>
    /// 空托盘回库主参数
    /// </summary>
    /// <typeparam name="T"></typeparam>
    public class EmptyBackEntity<T>
    {
        /// <summary>
        /// 天永的站点
        /// </summary>
        public string station { get; set; }
 
        /// <summary>
        /// 天永所有消耗的物料序列号集合
        /// </summary>
        public List<T> dataList { get; set; }
 
        /// <summary>
        /// 新增接口,是否手动移走空托盘,true表示是,false表示否, 如果是true,那么就人工移走 【EditBy shaocx,2022-03-24】
        /// </summary>
        public bool isMoveEmptyByHand { get; set; }
    }
 
    ///// <summary>
    ///// 空托盘回库子参数
    ///// </summary>
    //public class EmptyBackItemEntity
    //{
    //    /// <summary>
    //    /// 格式 materialCode*???*serialNumber,如 G10017237*???*2110241908
    //    /// </summary>
    //    public string serialNumber { get; set; }
    //}
}