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.
22 lines
844 B
22 lines
844 B
|
2 months ago
|
using System;
|
||
|
|
|
||
|
|
namespace Housing.Models;
|
||
|
|
|
||
|
|
public sealed class HousingAssemblyRecord
|
||
|
|
{
|
||
|
|
public string IcSn { get; set; } = string.Empty;
|
||
|
|
public string PcbBarcode { get; set; } = string.Empty;
|
||
|
|
public string Maker { get; set; } = string.Empty;
|
||
|
|
public string Model { get; set; } = string.Empty;
|
||
|
|
public string Variant1 { get; set; } = string.Empty;
|
||
|
|
public string Variant2 { get; set; } = string.Empty;
|
||
|
|
public string Operator { get; set; } = string.Empty;
|
||
|
|
public DateTime ProductionDate { get; set; } = DateTime.Now;
|
||
|
|
public string Line { get; set; } = string.Empty;
|
||
|
|
public string LotNo { get; set; } = string.Empty;
|
||
|
|
public string JigNo { get; set; } = string.Empty;
|
||
|
|
public decimal PtVol1 { get; set; }
|
||
|
|
public decimal PtCurrent1 { get; set; }
|
||
|
|
public string Result { get; set; } = string.Empty;
|
||
|
|
}
|