|
|
@@ -6,6 +6,7 @@ import com.taauav.app.query.InspectQuestionQuery; |
|
|
|
import com.taauav.app.service.IInspectQuestionService; |
|
|
|
import com.taauav.common.bean.Response; |
|
|
|
import com.taauav.front.dto.inspectquestion.InspectQuestionDto; |
|
|
|
import com.taauav.front.service.IUserAdminService; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
@@ -26,6 +27,8 @@ public class InspectQuestionController extends ApiBaseController { |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private IInspectQuestionService inspectQuestionService; |
|
|
|
@Autowired |
|
|
|
private IUserAdminService userAdminService; |
|
|
|
|
|
|
|
@Autowired |
|
|
|
private Response response; |
|
|
@@ -105,4 +108,14 @@ public class InspectQuestionController extends ApiBaseController { |
|
|
|
return inspectQuestionService.assign(inspectQuestionDto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 获取人员列表 |
|
|
|
* |
|
|
|
* @return |
|
|
|
*/ |
|
|
|
@PostMapping("/getAppAdminList") |
|
|
|
public Response getAppAdminList() { |
|
|
|
return userAdminService.getUserAdminList(); |
|
|
|
} |
|
|
|
|
|
|
|
} |