45 lines
641 B
C#
45 lines
641 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Model
|
|
{
|
|
public class ActionWorkLedger
|
|
{
|
|
public string ActionWorkLedgerId
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|