46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.MES.product.Dto
|
|
{
|
|
/// <summary>
|
|
/// 实现工单选择线体的关联表查询对象
|
|
/// </summary>
|
|
public class ProRelWorkorderLineBodyQueryDto : PagerInfo
|
|
{
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 实现工单选择线体的关联表输入输出对象
|
|
/// </summary>
|
|
public class ProRelWorkorderLineBodyDto
|
|
{
|
|
[Required(ErrorMessage = "工单主键id 雪花id不能为空")]
|
|
public string FkWorkorderId { get; set; }
|
|
|
|
[Required(ErrorMessage = "工序id不能为空")]
|
|
public int FkProcessId { get; set; }
|
|
|
|
[Required(ErrorMessage = "工位id不能为空")]
|
|
public int FkStationId { get; set; }
|
|
|
|
public int? Sort { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|