项目初始化

This commit is contained in:
2026-03-24 18:20:42 +08:00
parent 0a1e643f2a
commit 80e3cb1b58
18 changed files with 458 additions and 1170 deletions

View File

@@ -142,5 +142,14 @@ public class MyProjectInfoController extends BaseController {
myProjectInfoService.delete(myProjectInfo);
return renderResult(Global.TRUE, text("删除项目成功!"));
}
/**
* 列表数据
*/
@RequestMapping(value = "listAll")
@ResponseBody
public List<MyProjectInfo> listAll(MyProjectInfo myProjectInfo){
return myProjectInfoService.findList(myProjectInfo);
}
}