31 lines
757 B
C#
31 lines
757 B
C#
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;
|
||
}
|
||
}
|
||
}
|