| | |
| | | import com.xzx.gc.user.vo.JhyInfoListVo; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import io.swagger.annotations.ApiResponse; |
| | | import io.swagger.annotations.ApiResponses; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | |
| | | private JhyInfoService jhyInfoService; |
| | | |
| | | @ApiOperation(value = "集货员信息列表") |
| | | @ApiResponses( |
| | | @ApiResponse(code = 200, message = "success", response = JhyInfoListVo.class) |
| | | ) |
| | | @PostMapping(value = Constants.ADMIN_VIEW_PREFIX + "/jhy/list.json") |
| | | public JsonResult<Map<String, Object>> jhyList(@RequestBody JhyInfoListDto jhyInfoListDto) { |
| | | return JsonResult.success(jhyInfoService.queryList(jhyInfoListDto)); |