package controllers.data; import java.util.Map; import models.Depot; import com.et.mvc.JsonView; import com.et.mvc.View; import controllers.ApplicationController; public class DepotController extends ApplicationController{ public void index(){ } public View getItems() throws Exception{ return new JsonView(Depot.findAll(Depot.class)); } public View save(Depot item) throws Exception{ item.save(); return new JsonView(item); } public View update(int id, Map<String,Object> params) throws Exception{ Depot item = Depot.find(Depot.class, id); item = Depot.updateModel(item, params); item.save(); return new JsonView(item); } public View destroy(int id) throws Exception{ Depot item = Depot.find(Depot.class, id); item.destroy(); return new JsonView("success:true"); } }
最近下载更多
lhm789 LV6
10月26日
233002037 LV3
10月12日
educationAAA LV11
5月17日
genyuan2014 LV6
4月27日
wanglinddad LV55
3月14日
erqiu2013 LV18
2023年12月27日
微笑刺客 LV19
2023年11月21日
Seaskye LV14
2023年11月4日
ssh123 LV10
2023年9月28日
想飞的大肥猪 LV9
2023年8月2日