dengjunjie
4 天以前 b52018589bf6c7ec1d51ce8ad000a7aa993b0ab5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO.BasicInfo
{
    public class ToolingBoardSubmitDto
    {
 
        /// <summary>
        /// 成品编号 (必填)
        /// </summary>
        public string FinishedProductCode { get; set; }
 
        /// <summary>
        /// 零件列表(固定10个,对应零件1~零件10,空则传空字符串)
        /// </summary>
        public List<string> PartsList { get; set; }
    }
}