wanshenmean
3 天以前 ce1292c9cf37195b6abd2699dfc5d6cb3e143c9b
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; }
    }
}