From 85a299f3ffe2dd47132f7f0f79146f3675bdc273 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期一, 14 四月 2025 15:27:34 +0800 Subject: [PATCH] 优化了一些已知问题 --- Tiger.Business/Services/Base/TigerJobBase.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tiger.Business/Services/Base/TigerJobBase.cs b/Tiger.Business/Services/Base/TigerJobBase.cs index 96ffdaf..26c6bc2 100644 --- a/Tiger.Business/Services/Base/TigerJobBase.cs +++ b/Tiger.Business/Services/Base/TigerJobBase.cs @@ -21,11 +21,11 @@ /// <summary> /// 寮�濮嬫椂闂� /// </summary> - public static DateTime StartTime { get; set; } + public DateTime StartTime { get; set; } /// <summary> /// 淇濆瓨鏃ュ織 /// </summary> - public static ApiAction SaveLog(JobExecutingContext context, string remark) + public ApiAction SaveLog(JobExecutingContext context, string remark) { ApiAction action = new ApiAction(); Type type = Type.GetType(context.JobDetail.JobType, throwOnError: true); @@ -121,7 +121,7 @@ /// 鍒ゆ柇鏃堕棿锛岃繑鍥炴槸鍚﹀彲浠ョ户缁伐浣滀换鍔� /// </summary> /// <returns></returns> - public TskJobInput CheckIFCanGo() + public TskJobInput CheckHowToDo() { TskJobInput tskJobInput = new TskJobInput(); var dateTime = DateTime.Now; -- Gitblit v1.9.3