This commit is contained in:
2025-07-04 09:50:02 +08:00
commit 3d800dbd11
2564 changed files with 1353015 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.LxmZHMDReport
{
public class ReportCalRateResp
{
/// <summary>
/// 总共多少运算量
/// </summary>
public int Total { get; set; }
/// <summary>
/// 当前导出到第几条数据
/// </summary>
public int CurQty { get; set; }
/// <summary>
/// 当前计算到的比例为1表示执行完成返回比如0.1234表示执行了12.34% ,该比例比一定会等于CurQty/Total
/// </summary>
public decimal Rate
{
get;
set;
}
}
}