19 lines
367 B
C#
19 lines
367 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.api.Dto
|
|
{
|
|
/// <summary>
|
|
/// 工艺路线查询对象
|
|
/// </summary>
|
|
public class RestLineCodeDto
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
}
|
|
}
|