| | |
| | | import org.springblade.core.tool.utils.StringUtil; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | |
| | | /** |
| | | * @ClassName AttResBaseController |
| | |
| | | |
| | | |
| | | /** |
| | | * 查询所有水库填报的状态信息 |
| | | * @param resGuid |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "中台水库-查询所有水库填报的状态信息", notes = "中台水库-查询所有水库填报的状态信息") |
| | | @GetMapping(value = "/getAllWaterFillInfoByResGuid") |
| | | public R getAllWaterFillInfoByResGuid(String resGuid) { |
| | | List<Map<String,Object>> list = tbAttResBaseService.getAllWaterFillInfoByResGuid(resGuid); |
| | | return R.data(list); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 查询水库填报详情信息 |
| | | * @param guid |
| | | * @return |