34 lines
676 B
C#
34 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Model.HSSE
|
|
{
|
|
public class Information_DrillPlanHalfYearReport
|
|
{
|
|
|
|
|
|
|
|
|
|
public System.Nullable<System.DateTime> CompileDate{get;set;}
|
|
|
|
|
|
public string CompileMan{get;set;}
|
|
|
|
public string DrillPlanHalfYearReportId{get;set;}
|
|
|
|
public System.Nullable<int> HalfYearId{get;set;}
|
|
|
|
public string Telephone{get;set;}
|
|
|
|
public string UnitId{get;set;}
|
|
|
|
public System.Nullable<int> YearId{get;set;}
|
|
|
|
|
|
}
|
|
|
|
}
|