45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace Model
|
|
{
|
|
public class HJGLData
|
|
{
|
|
/// <summary>
|
|
/// HJGL数据项集合
|
|
/// </summary>
|
|
public List<HJGLDataItem> HJGLDataItems
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// HJGLDataItem
|
|
/// </summary>
|
|
public partial class HJGLDataItem
|
|
{
|
|
public string Id { get; set; }
|
|
public string CollCropCode { get; set; }
|
|
public int? CompleteDineNum { get; set; }
|
|
public int? OKFilmNum { get; set; }
|
|
public string ReportDate { get; set; }
|
|
public int? TotalDineNum { get; set; }
|
|
public int? TotalFilmNum { get; set; }
|
|
public string UnitId { get; set; }
|
|
public int? WelderNum { get; set; }
|
|
public List<HJGLDataDefectItems> HJGLDataDefectItems { get; set; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// HJGLDataDefectItem
|
|
/// </summary>
|
|
public partial class HJGLDataDefectItems
|
|
{
|
|
public string DefectName { get; set; }
|
|
public int? DefectNum { get; set; }
|
|
public string Id { get; set; }
|
|
}
|
|
}
|