feat: There is no way the, 56812 新增的,走完流程后没有显示公开

This commit is contained in:
396572590@qq.com
2022-07-29 17:28:35 +08:00
parent fdcdcfdd35
commit 9c709c1ffa
@@ -47,6 +47,14 @@ public class SarPublicIdeaAllController extends BaseController<SarPublicIdeaAll>
private SarPublicIdeaAllDao sarPublicIdeaAllDao;
@ApiOperation(value = "根据ID查询ID下全部意见")
@GetMapping("/getAllStandById")
public List<SarPublicIdeaAll> getAllStandById(@RequestParam("ideaId") String ideaId){
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("idea_id",ideaId);
return sarPublicIdeaAllDao.selectList(wrapper);
}
@ApiOperation(value = "查询全部意见")
@GetMapping("/getAllStand")
public ResponseMessage getAllStand(DetAllStandDto detAllStandDto){