leiqunqing
2026-01-19 ba8aa925e7901381ceb394adb53eca8723d1c4c5
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
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 ToolingBoardNo { get; set; }
 
        /// <summary>
        /// 成品编号 (必填)
        /// </summary>
        public string FinishedProductCode { get; set; }
 
        /// <summary>
        /// 零件列表(固定10个,对应零件1~零件10,空则传空字符串)
        /// </summary>
        public List<string> PartsList { get; set; }
    }
}