2023-03-31 报表升级

This commit is contained in:
2023-03-31 10:21:00 +08:00
parent 5acee68633
commit 5ee3b089b7
175 changed files with 68864 additions and 2056 deletions
+47
View File
@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public class OperationReportDto
{
public string BusinessReportId { get; set; }
public string UnitId { get; set; }
public int? Year { get; set; }
public int? Quarters { get; set; }
public string Code { get; set; }
public string UnitLevel { get; set; }
public DateTime? CreateDate { get; set; }
public string Place { get; set; }
public int? PersonNum { get; set; }
public decimal? TotalAssets { get; set; }
public decimal? TotalValue { get; set; }
public decimal? NewInvestment { get; set; }
public string FillingMan { get; set; }
public DateTime? FillingDate { get; set; }
public string StatisticsDutyPerson { get; set; }
public string UnitDutyPerson { get; set; }
public string Remark { get; set; }
public string UpState { get; set; }
}
}