提交代码

This commit is contained in:
2024-10-12 10:00:46 +08:00
parent f3491ae4b3
commit a9edf59cf3
29 changed files with 6756 additions and 133 deletions
+44
View File
@@ -0,0 +1,44 @@
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;
}
}
}