初始化仓库

This commit is contained in:
2025-02-12 09:27:47 +08:00
commit 4c82d32543
12386 changed files with 3017395 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
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; }
}
}