修改集团客户化内容

This commit is contained in:
2023-01-04 15:27:19 +08:00
parent bb7bdee235
commit 3fb8feb4f3
214 changed files with 84021 additions and 120 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; }
}
}