| File was renamed from src/main/java/org/springblade/modules/customTask/controller/CustomTaskController.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.springblade.modules.customTask.controller; |
| | | package org.springblade.modules.threeColorTask.controller; |
| | | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | import lombok.AllArgsConstructor; |
| | | import javax.validation.Valid; |
| | | |
| | | import org.springblade.core.secure.BladeUser; |
| | | import org.springblade.core.mp.support.Condition; |
| | | import org.springblade.core.mp.support.Query; |
| | | import org.springblade.core.tool.api.R; |
| | | import org.springblade.core.tool.utils.Func; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.modules.customTask.entity.CustomTaskEntity; |
| | | import org.springblade.modules.customTask.vo.CustomTaskVO; |
| | | import org.springblade.modules.customTask.wrapper.CustomTaskWrapper; |
| | | import org.springblade.modules.customTask.service.ICustomTaskService; |
| | | import org.springblade.modules.threeColorTask.entity.CustomTaskEntity; |
| | | import org.springblade.modules.threeColorTask.vo.CustomTaskVO; |
| | | import org.springblade.modules.threeColorTask.wrapper.CustomTaskWrapper; |
| | | import org.springblade.modules.threeColorTask.service.ICustomTaskService; |
| | | import org.springblade.core.boot.ctrl.BladeController; |
| | | |
| | | /** |