21 lines
446 B
C#
21 lines
446 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tnb.ProductionMgr.Entities.Dto.PrdManage
|
|
{
|
|
public class DeletePrdMoInput
|
|
{
|
|
/// <summary>
|
|
/// 工单代码
|
|
/// </summary>
|
|
public string mo_code { get; set; }
|
|
/// <summary>
|
|
/// 行号
|
|
/// </summary>
|
|
public string erp_lineno { get; set; }
|
|
}
|
|
}
|