You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1000 B
33 lines
1000 B
package com.zc.business.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
@Data
|
|
@ApiModel(value = "DcBatchFunctionsJobGroup", description = "定时任务组实体")
|
|
public class DcBatchFunctionsJobGroup {
|
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Long id;
|
|
@ApiModelProperty("任务组名称")
|
|
private String groupName;
|
|
@ApiModelProperty("状态")
|
|
private String status;
|
|
@ApiModelProperty("详细配置")
|
|
private String detailedConfiguration;
|
|
@ApiModelProperty("备注")
|
|
private String remark;
|
|
@ApiModelProperty("创建者")
|
|
private String createBy;
|
|
@ApiModelProperty("创建时间")
|
|
private Date createTime;
|
|
@ApiModelProperty("修改者")
|
|
private Date updateBy;
|
|
@ApiModelProperty("修改时间")
|
|
private Date updateTime;
|
|
}
|
|
|