| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- package com.keao.edu.common.entity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- /**
- * 对应数据库表(sys_task):
- */
- public class SysTask {
- /** 任务id,主键 */
- private Integer id;
-
- /** 任务名称 */
- private String name;
-
- /** 任务所属分组 */
- private String group;
-
- /** 具体任务接口 */
- private String jobClass;
-
- /** 任务执行的时间表达式 */
- private String timeExp;
-
- /** 状态(-1,执行失败;0,暂停;1,准备就绪;2,执行中;3,执行成功) */
- private Integer status;
-
- /** 任务描述 */
- private String description;
-
- /** 创建时间 */
- private java.util.Date createOn;
-
- /** 修改时间 */
- private java.util.Date modifyOn;
-
- public void setId(Integer id){
- this.id = id;
- }
-
- public Integer getId(){
- return this.id;
- }
-
- public void setName(String name){
- this.name = name;
- }
-
- public String getName(){
- return this.name;
- }
-
- public void setGroup(String group){
- this.group = group;
- }
-
- public String getGroup(){
- return this.group;
- }
-
- public void setJobClass(String jobClass){
- this.jobClass = jobClass;
- }
-
- public String getJobClass(){
- return this.jobClass;
- }
-
- public void setTimeExp(String timeExp){
- this.timeExp = timeExp;
- }
-
- public String getTimeExp(){
- return this.timeExp;
- }
-
- public void setStatus(Integer status){
- this.status = status;
- }
-
- public Integer getStatus(){
- return this.status;
- }
-
- public void setDescription(String description){
- this.description = description;
- }
-
- public String getDescription(){
- return this.description;
- }
-
- public void setCreateOn(java.util.Date createOn){
- this.createOn = createOn;
- }
-
- public java.util.Date getCreateOn(){
- return this.createOn;
- }
-
- public void setModifyOn(java.util.Date modifyOn){
- this.modifyOn = modifyOn;
- }
-
- public java.util.Date getModifyOn(){
- return this.modifyOn;
- }
-
- @Override
- public String toString() {
- return ToStringBuilder.reflectionToString(this);
- }
- }
|