Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/LxmZHMDReport/ReportCalRateResp.cs

31 lines
757 B
C#
Raw Normal View History

2025-07-04 09:50:02 +08:00
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;
}
}
}