作物信息统计接口
This commit is contained in:
@ -107,4 +107,16 @@ public class AgricultureCropYieldController extends BaseController
|
||||
{
|
||||
return toAjax(agricultureCropYieldService.deleteAgricultureCropYieldByIds(ids));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询作物产量统计信息
|
||||
*/
|
||||
@PreAuthorize("@ss.hasPermi('crop:yield:statistics')")
|
||||
@GetMapping("/statistics")
|
||||
@ApiOperation("查询作物产量统计信息")
|
||||
public AjaxResult statistics(AgricultureCropYield agricultureCropYield)
|
||||
{
|
||||
return AjaxResult.success(agricultureCropYieldService.selectAgricultureCropYieldStatistics(agricultureCropYield));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user