fixed status running task & remove re-start scheduling from controller(add field lastfinish - update sql)
This commit is contained in:
parent
c443d94ac3
commit
59b097b10b
6 changed files with 389 additions and 11 deletions
|
@ -45,6 +45,7 @@ namespace WebsitePanel.EnterpriseServer
|
|||
private DateTime toTime;
|
||||
private DateTime startTime;
|
||||
private DateTime lastRun;
|
||||
private DateTime lastFinish;
|
||||
private DateTime nextRun;
|
||||
private bool enabled;
|
||||
private string statusId;
|
||||
|
@ -121,6 +122,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
set { this.lastRun = value; }
|
||||
}
|
||||
|
||||
public System.DateTime LastFinish
|
||||
{
|
||||
get { return this.lastFinish; }
|
||||
set { this.lastFinish = value; }
|
||||
}
|
||||
|
||||
public System.DateTime NextRun
|
||||
{
|
||||
get { return this.nextRun; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue