能源消耗
This commit is contained in:
@@ -19,7 +19,7 @@ import lombok.experimental.Accessors;
|
||||
* </p>
|
||||
*
|
||||
* @author mt
|
||||
* @since 2022-03-03
|
||||
* @since 2022-03-04
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@@ -46,7 +46,7 @@ public class AutoExeTask extends Model<AutoExeTask> {
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 状态,0:新增,1:执行中,2完成
|
||||
* 状态,0:新增,1:执行中,2完成,3 终止
|
||||
*/
|
||||
@TableField("status")
|
||||
private Integer status;
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
* </p>
|
||||
*
|
||||
* @author mt
|
||||
* @since 2022-03-03
|
||||
* @since 2022-03-04
|
||||
*/
|
||||
public interface AutoExeTaskMapper extends BaseMapper<AutoExeTask> {
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
|
||||
* </p>
|
||||
*
|
||||
* @author mt
|
||||
* @since 2022-03-03
|
||||
* @since 2022-03-04
|
||||
*/
|
||||
public interface AutoExeTaskServiceBiz extends IService<AutoExeTask> {
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ import org.springframework.stereotype.Service;
|
||||
* </p>
|
||||
*
|
||||
* @author mt
|
||||
* @since 2022-03-03
|
||||
* @since 2022-03-04
|
||||
*/
|
||||
@Service
|
||||
public class AutoExeTaskServiceBizImpl extends ServiceImpl<AutoExeTaskMapper, AutoExeTask> implements AutoExeTaskServiceBiz {
|
||||
|
||||
Reference in New Issue
Block a user