68 lines
1.5 KiB
C#
68 lines
1.5 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.quality.Dto
|
|
{
|
|
/// <summary>
|
|
/// 缺陷收集查询对象
|
|
/// </summary>
|
|
public class QcDefectCollectionQueryDto : PagerInfo
|
|
{
|
|
public string MaterialCode { get; set; }
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
public DateTime? DateTime { get; set; }
|
|
|
|
public string GroupCode { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public int? Tqm { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 缺陷收集输入输出对象
|
|
/// </summary>
|
|
public class QcDefectCollectionDto
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
public string BatchNumber { get; set; }
|
|
|
|
public string Unit { get; set; }
|
|
|
|
public decimal Quantity { get; set; }
|
|
|
|
public DateTime? DateTime { get; set; }
|
|
|
|
public string GroupCode { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string ProcessName { get; set; }
|
|
|
|
public string Superintendent { get; set; }
|
|
|
|
public string DefectDescription { get; set; }
|
|
|
|
public int? Tqm { 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; }
|
|
|
|
|
|
|
|
}
|
|
} |