调整

parent 0af1d473
......@@ -219,7 +219,7 @@ public ApiResponse NewExtractData([CustomizeValidator, FromBody]ExtractRequest r
allot.IsExtracting = allot.IsExtracting ?? 0;
if (allot.IsExtracting == 1)
throw new PerformanceException("正在提取数据,请稍等!");
return new ApiResponse(ResponseType.OK, "正在提取数据,请稍等!");
allot.IsExtracting = 1;
allotService.Update(allot);
......@@ -235,7 +235,7 @@ public ApiResponse NewExtractData([CustomizeValidator, FromBody]ExtractRequest r
//{
// return new ApiResponse(ResponseType.Fail, "该功能暂未实现!");
//}
return new ApiResponse(ResponseType.Error, "HIS绩效数据提取任务正在执行,稍后我们将以邮件的通知您!");
return new ApiResponse(ResponseType.OK, "HIS绩效数据提取任务正在执行,稍后我们将以邮件的通知您!");
}
catch (Exception ex)
{
......
......@@ -61,7 +61,7 @@ public static ICellStyle CreateCellStyle(IWorkbook wb, StyleType type = StyleTyp
cellStyle.FillPattern = FillPattern.SolidForeground;
break;
case StyleType.系数:
cellStyle.FillForegroundColor = HSSFColor.Green.Index;
cellStyle.FillForegroundColor = HSSFColor.LightGreen.Index;
cellStyle.FillPattern = FillPattern.SolidForeground;
break;
case StyleType.默认:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment