Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/LxmZHMDReport/ReportCalRateResp.cs
2025-07-04 09:50:02 +08:00

31 lines
757 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
}
}
}