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 { /// /// 总共多少运算量 /// public int Total { get; set; } /// /// 当前导出到第几条数据 /// public int CurQty { get; set; } /// /// 当前计算到的比例,为1表示执行完成,返回比如0.1234,表示执行了12.34% ,该比例比一定会等于CurQty/Total /// public decimal Rate { get; set; } } }