This commit is contained in:
Jottyfan
2023-09-09 23:15:47 +02:00
parent bd081ff48a
commit e991c26c13
27 changed files with 909 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package de.jottyfan.bico.modules.sheet;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
import de.jottyfan.bico.modules.CommonController;
/**
*
* @author jotty
*
*/
@Controller
public class SheetController extends CommonController {
@Autowired
private SheetService service;
@GetMapping("/sheet")
public String getSheet(Model model) {
model.addAttribute("list", service.getList());
return "/sheet";
}
}