添加功能
This commit is contained in:
@@ -101,4 +101,17 @@ public class ModelDemandMonitorEmploymentController extends BaseController {
|
|||||||
modelDemandMonitorEmploymentService.list(modelDemandMonitorEmployment);
|
modelDemandMonitorEmploymentService.list(modelDemandMonitorEmployment);
|
||||||
return AjaxResult.success(list);
|
return AjaxResult.success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询列表
|
||||||
|
*
|
||||||
|
* @param modelDemandMonitorEmployment 劳动力需求就业人数
|
||||||
|
* @return 列表
|
||||||
|
*/
|
||||||
|
@PostMapping("/listResult")
|
||||||
|
public AjaxResult listResult(@RequestBody ModelDemandMonitorEmployment modelDemandMonitorEmployment) {
|
||||||
|
List<ModelDemandMonitorEmployment> list =
|
||||||
|
modelDemandMonitorEmploymentService.list(modelDemandMonitorEmployment);
|
||||||
|
return AjaxResult.success(list);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -101,4 +101,17 @@ public class ModelDemandMonitorIndustryTrendController extends BaseController {
|
|||||||
modelDemandMonitorIndustryTrendService.listDemand(modelDemandMonitorIndustryTrend);
|
modelDemandMonitorIndustryTrendService.listDemand(modelDemandMonitorIndustryTrend);
|
||||||
return AjaxResult.success(list);
|
return AjaxResult.success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询列表
|
||||||
|
*
|
||||||
|
* @param modelDemandMonitorIndustryTrend 劳动力需求分行业需求趋势分析
|
||||||
|
* @return 列表
|
||||||
|
*/
|
||||||
|
@PostMapping("/listResult")
|
||||||
|
public AjaxResult listResult(@RequestBody ModelDemandMonitorIndustryTrend modelDemandMonitorIndustryTrend) {
|
||||||
|
ModelDemandMonitorIndustryTrendVo list =
|
||||||
|
modelDemandMonitorIndustryTrendService.listDemand(modelDemandMonitorIndustryTrend);
|
||||||
|
return AjaxResult.success(list);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -101,4 +101,17 @@ public class ModelDemandMonitorMajorIndustryTrendController extends BaseControll
|
|||||||
modelDemandMonitorMajorIndustryTrendService.listDemand(modelDemandMonitorMajorIndustryTrend);
|
modelDemandMonitorMajorIndustryTrendService.listDemand(modelDemandMonitorMajorIndustryTrend);
|
||||||
return AjaxResult.success(list);
|
return AjaxResult.success(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询列表
|
||||||
|
*
|
||||||
|
* @param modelDemandMonitorMajorIndustryTrend 劳动力需求重点产业需求趋势分析
|
||||||
|
* @return 列表
|
||||||
|
*/
|
||||||
|
@PostMapping("/listResult")
|
||||||
|
public AjaxResult listResult(@RequestBody ModelDemandMonitorMajorIndustryTrend modelDemandMonitorMajorIndustryTrend) {
|
||||||
|
ModelDemandMonitorMajorIndustryTrendVo list =
|
||||||
|
modelDemandMonitorMajorIndustryTrendService.listDemand(modelDemandMonitorMajorIndustryTrend);
|
||||||
|
return AjaxResult.success(list);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
AND year = #{year}
|
AND year = #{year}
|
||||||
</if>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
ORDER BY year DESC
|
ORDER BY year ASC
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
Reference in New Issue
Block a user