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.

27 lines
1.0 KiB

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 string Password { 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;
2 months ago
public string? Spare1 { get; set; }
public string? Spare2 { get; set; }
public string? Spare3 { get; set; }
public string? Spare4 { get; set; }
2 months ago
}