first commit

This commit is contained in:
2024-11-19 09:45:27 +08:00
commit f1abdbc6d0
13312 changed files with 2933801 additions and 0 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.APIItem.SYHSE
{
public class DataBaseItem
{
public string Id
{
get;
set;
}
public string ProjectId
{
get;
set;
}
public string UnitId
{
get;
set;
}
public DateTime? ReportDate
{
get;
set;
}
public int? SafeWorkinghours
{
get;
set;
}
public string CreateMan
{
get;
set;
}
public DateTime? CreateDate
{
get;
set;
}
}
}