11
huangxiaoqiang
2025-04-07 ad684e5f7248967f03c7a20f0ce2f7cfce2e017b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace WIDESEA_DTO;
 
/// <summary>
/// 工艺路线申请
/// </summary>
public class ProcessApplyDto : Basic
{
    /// <summary>
    /// 工单编号
    /// </summary>
    public string WipOrderNo { get; set; }
 
    /// <summary>
    /// 电芯组
    /// </summary>
    public List<SerialNos> SerialNos { get; set; }
}