|
|
@ -8,6 +8,7 @@ import com.msdw.tms.entity.ProjectEntity; |
|
|
|
import com.msdw.tms.entity.ProjectRecordEntity; |
|
|
|
import com.msdw.tms.entity.ProjectRecordEntity; |
|
|
|
import com.msdw.tms.entity.vo.ProjectRecordVo; |
|
|
|
import com.msdw.tms.entity.vo.ProjectRecordVo; |
|
|
|
import com.msdw.tms.service.ProjectRecordService; |
|
|
|
import com.msdw.tms.service.ProjectRecordService; |
|
|
|
|
|
|
|
import io.swagger.annotations.ApiParam; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.util.StringUtils; |
|
|
|
import org.springframework.util.StringUtils; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
@ -57,7 +58,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 用户端虚拟仿真实验记录 |
|
|
|
* 用户端虚拟仿真实验记录(练习列表) |
|
|
|
* |
|
|
|
* |
|
|
|
* @param page |
|
|
|
* @param page |
|
|
|
* @param size |
|
|
|
* @param size |
|
|
@ -66,7 +67,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@GetMapping("/user/record") |
|
|
|
@GetMapping("/user/record") |
|
|
|
public R queryUserRecord(@RequestParam Integer page, @RequestParam Integer size, @RequestParam Integer userId, @RequestParam Integer projectPermissions, @RequestParam Integer systemId) { |
|
|
|
public R queryUserRecord(@RequestParam Integer page, @RequestParam Integer size, @RequestParam Integer userId, @RequestParam Integer projectPermissions, @RequestParam Integer systemId) { |
|
|
|
PageUtils page1 = projectRecordService.queryPage(page, size, userId, projectPermissions, systemId); |
|
|
|
PageUtils page1 = projectRecordService.queryPage(page, size, userId, projectPermissions, systemId); |
|
|
|
return R.ok().put("data", page1); |
|
|
|
return R.ok().put("data", page1); |
|
|
|
} |
|
|
|
} |
|
|
@ -87,7 +88,7 @@ public class ProjectRecordController implements ProjectRcordControllerApi { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* 用户端教学实验记录 |
|
|
|
* 用户端教学实验记录(考核列表) |
|
|
|
* |
|
|
|
* |
|
|
|
* @param page |
|
|
|
* @param page |
|
|
|
* @param size |
|
|
|
* @param size |
|
|
|