37 lines
561 B
C#
37 lines
561 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace DOAN.Model.PBL.Dto
|
|||
|
|
{
|
|||
|
|
public class LightUpDto
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 工单号
|
|||
|
|
/// </summary>
|
|||
|
|
public string Workorder { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 订单号
|
|||
|
|
/// </summary>
|
|||
|
|
public string OrderNumber { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 总成零件号
|
|||
|
|
/// </summary>
|
|||
|
|
public string AssemblyPartNumber { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|