2026-06-15 18:06:19 +08:00
|
|
|
namespace Model
|
|
|
|
|
{
|
|
|
|
|
public class AntiCorrosionTrustDetailOutput
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string TrustId { get; set; }
|
|
|
|
|
public int? SortIndex { get; set; }
|
|
|
|
|
public string MaterialCode { get; set; }
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
public string MaterialName { get; set; }
|
|
|
|
|
public string MaterialSpec { get; set; }
|
|
|
|
|
public string MaterialDef { get; set; }
|
|
|
|
|
public string MaterialUnit { get; set; }
|
|
|
|
|
public decimal? Quantity { get; set; }
|
|
|
|
|
public string PaintCode { get; set; }
|
|
|
|
|
public string Primer { get; set; }
|
|
|
|
|
public string IntermediatePaint { get; set; }
|
|
|
|
|
public string Topcoat { get; set; }
|
|
|
|
|
public string ColorCode { get; set; }
|
2026-08-19 17:13:33 +08:00
|
|
|
public bool IsPostWeld { get; set; }
|
2026-06-15 18:06:19 +08:00
|
|
|
public string Remark { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|