48 lines
729 B
C#
48 lines
729 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model
|
|
{
|
|
public class SafetyProductionEvaluation
|
|
{
|
|
public string SafetyProductionEvaluationId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string UnitId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public DateTime? ReportDate
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? Quarter
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int? YearId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string CompileMan
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|