first commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user