修改作业票

This commit is contained in:
2023-09-14 20:11:35 +08:00
parent 7cca1b3cd3
commit ba8a84b2e0
9 changed files with 620 additions and 4 deletions
+47
View File
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class HSSELogItem
{
public string HSSELogId { get; set; }
public string ProjectId { get; set; }
public string CompileDate { get; set; }
public string CompileMan { get; set; }
public string Weather { get; set; }
public bool? IsVisible { get; set; }
public string CompileManName { get; set; }
public string WeatherName { get; set; }
public int? Num11 { get; set; }
public string Contents12 { get; set; }
public string Contents13 { get; set; }
public string Contents21 { get; set; }
public int? Num21 { get; set; }
public string Contents22 { get; set; }
public int? Num22 { get; set; }
public string Contents23 { get; set; }
public int? Num23 { get; set; }
public string Contents24 { get; set; }
public int? Num24 { get; set; }
public string Contents210 { get; set; }
public int? Num210 { get; set; }
public int? Num211 { get; set; }
public string Contents31 { get; set; }
public int? Num31 { get; set; }
public string Contents32 { get; set; }
public int? Num32 { get; set; }
public string Contents41 { get; set; }
public string Contents42 { get; set; }
}
}