leiqunqing
2026-02-06 8aa5f0e094e6ff51aa7c47d5b4e8331a16eb09ff
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; }
    }
}