wanshenmean
2 天以前 5e851678cc02257bbbd179446de36082430ca5bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.Collections.Generic;
 
namespace WIDESEA_DTO.MES
{
    /// <summary>
    /// 托盘电芯解绑请求DTO
    /// </summary>
    public class UnbindContainerRequestDto
    {
        /// <summary>
        /// 托盘编号
        /// </summary>
        public string PalletCode { get; set; }
 
        /// <summary>
        /// 电芯码列表
        /// </summary>
        public List<string> SfcList { get; set; }
    }
}