You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NFine.Application.Models
|
|
{
|
|
public class IcsMatCheckResultDetailDto
|
|
{
|
|
public string ID { get; set; }
|
|
|
|
public string CheckNo { get; set; }
|
|
public string CheckAttr { get; set; }
|
|
public string CheckAttrText { get; set; }
|
|
public string CheckItemCode { get; set; }
|
|
public string CheckItemName { get; set; }
|
|
public string CheckWay { get; set; }
|
|
public string CheckAqlName { get; set; }
|
|
public decimal? SetValueMax { get; set; }
|
|
public decimal? SetValueMin { get; set; }
|
|
public string Unit { get; set; }
|
|
|
|
public decimal? S1 { get; set; }
|
|
public decimal? S2 { get; set; }
|
|
public decimal? S3 { get; set; }
|
|
public decimal? S4 { get; set; }
|
|
public decimal? S5 { get; set; }
|
|
public decimal? S6 { get; set; }
|
|
public decimal? S7 { get; set; }
|
|
public decimal? S8 { get; set; }
|
|
public decimal? S9 { get; set; }
|
|
public decimal? S10 { get; set; }
|
|
public decimal? AqlQty { get; set; }
|
|
public decimal? GoodQty { get; set; }
|
|
public decimal? NgQty { get; set; }
|
|
|
|
public string Result { get; set; }
|
|
public string Remark { get; set; }
|
|
}
|
|
}
|