-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
625d109
commit cb48a0d
Showing
8 changed files
with
198 additions
and
76 deletions.
There are no files selected for viewing
Submodule angular
updated
92 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
package org.daming.hoteler.pojo; | ||
|
||
import java.util.StringJoiner; | ||
|
||
/** | ||
* @author gming001 | ||
* @version 2024-02-29 15:00 | ||
*/ | ||
public class JobInfo { | ||
|
||
private String name; | ||
|
||
private String group; | ||
|
||
private String cron; | ||
|
||
private String state; | ||
|
||
private String timeZone; | ||
|
||
private String className; | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public JobInfo setName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
public String getGroup() { | ||
return group; | ||
} | ||
|
||
public JobInfo setGroup(String group) { | ||
this.group = group; | ||
return this; | ||
} | ||
|
||
public String getCron() { | ||
return cron; | ||
} | ||
|
||
public JobInfo setCron(String cron) { | ||
this.cron = cron; | ||
return this; | ||
} | ||
|
||
public String getState() { | ||
return state; | ||
} | ||
|
||
public JobInfo setState(String state) { | ||
this.state = state; | ||
return this; | ||
} | ||
|
||
public String getTimeZone() { | ||
return timeZone; | ||
} | ||
|
||
public JobInfo setTimeZone(String timeZone) { | ||
this.timeZone = timeZone; | ||
return this; | ||
} | ||
|
||
public String getClassName() { | ||
return className; | ||
} | ||
|
||
public JobInfo setClassName(String className) { | ||
this.className = className; | ||
return this; | ||
} | ||
|
||
public JobInfo() { | ||
super(); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return new StringJoiner(", ", JobInfo.class.getSimpleName() + "[", "]") | ||
.add("name='" + name + "'") | ||
.add("group='" + group + "'") | ||
.add("cron='" + cron + "'") | ||
.add("state='" + state + "'") | ||
.add("timeZone='" + timeZone + "'") | ||
.add("className='" + className + "'") | ||
.toString(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters