Commit 5e061dc5 by jiang'yun

修改

parent 3782f9ff
......@@ -41,11 +41,22 @@ public class SjFdsgcsController extends BaseController
@GetMapping("/list")
public TableDataInfo list(SjFdsgcs sjFdsgcs)
{
startPage();
// startPage();
List<SjFdsgcs> list = sjFdsgcsService.selectSjFdsgcsList(sjFdsgcs);
return getDataTable(list);
}
@GetMapping("/getInfo")
public AjaxResult getInfo(SjFdsgcs sjFdsgcs)
{
// startPage();
List<SjFdsgcs> list = sjFdsgcsService.selectSjFdsgcsList(sjFdsgcs);
if(list.size()>0){
SjFdsgcs sjFdsgcs1 = list.get(0);
return AjaxResult.success(sjFdsgcs1);
}else {
return AjaxResult.success(new SjFdsgcs());
}
}
/**
* 导出设计-分段施工措施列表
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment