75 lines
1.6 KiB
C#
75 lines
1.6 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 质量GP12工单业务模块查询对象
|
|
/// </summary>
|
|
public class QcGp12ServiceWorkorderQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 质量GP12工单业务模块输入输出对象
|
|
/// </summary>
|
|
public class QcGp12ServiceWorkorderDto
|
|
{
|
|
[Required(ErrorMessage = "序号不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
public string WorkOrder { get; set; }
|
|
|
|
public string PartNumber { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public string Specification { get; set; }
|
|
|
|
public string Color { get; set; }
|
|
|
|
public string Team { get; set; }
|
|
|
|
public string SiteNo { get; set; }
|
|
|
|
public string ComNo { get; set; }
|
|
|
|
public int? IsOnetime { get; set; }
|
|
|
|
public int? IsBack { get; set; }
|
|
|
|
public int? IsPolish { get; set; }
|
|
|
|
public int? IsOut { get; set; }
|
|
|
|
public DateTime? StartTime { get; set; }
|
|
|
|
public DateTime? EndTime { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
public int? RequireNumber { get; set; }
|
|
|
|
public int? QualifiedNumber { get; set; }
|
|
|
|
public int? DamoNumber { get; set; }
|
|
|
|
public int? BaofeiNumber { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |