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; }
|
}
|
}
|