48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
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; }
|
|
}
|
|
}
|