DeptAction.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package com.post.action;
  2. import org.apache.struts2.convention.annotation.Action;
  3. import org.apache.struts2.convention.annotation.Result;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import com.opensymphony.xwork2.ModelDriven;
  6. import com.post.pageModel.Dept;
  7. import com.post.pageModel.Json;
  8. import com.post.service.DeptServiceI;
  9. /**
  10. * 单位
  11. */
  12. @Action(value = "deptAction", results = {
  13. @Result(name = "deptManager", location = "/admin/dept/deptManager.jsp"),
  14. @Result(name = "deptAdd", location = "/admin/dept/deptAdd.jsp"),
  15. @Result(name = "deptEdit", location = "/admin/dept/deptEdit.jsp") })
  16. public class DeptAction extends BaseAction implements ModelDriven<Dept> {
  17. private Dept dept = new Dept();
  18. private DeptServiceI deptService;
  19. public DeptServiceI getDeptService() {
  20. return deptService;
  21. }
  22. @Autowired
  23. public void setDeptService(DeptServiceI deptService) {
  24. this.deptService = deptService;
  25. }
  26. @Override
  27. public Dept getModel() {
  28. return dept;
  29. }
  30. public void do_showDept() {
  31. super.writeJson(deptService.treeDept(dept));
  32. }
  33. public String deptManager() {
  34. return "deptManager";
  35. }
  36. public String deptEdit() {
  37. return "deptEdit";
  38. }
  39. public String deptAdd() {
  40. return "deptAdd";
  41. }
  42. public void add() {
  43. Json j = new Json();
  44. try {
  45. deptService.add(dept);
  46. j.setSuccess(true);
  47. j.setMsg("添加成功!");
  48. } catch (Exception e) {
  49. j.setMsg("添加失败!");
  50. }
  51. super.writeJson(j);
  52. }
  53. public void edit() {
  54. Json j = new Json();
  55. try {
  56. deptService.edit(dept);
  57. j.setSuccess(true);
  58. j.setMsg("编辑成功!");
  59. } catch (Exception e) {
  60. j.setMsg("编辑失败!");
  61. }
  62. writeJson(j);
  63. }
  64. public void delete() {
  65. Json j = new Json();
  66. try {
  67. deptService.delete(dept);
  68. j.setSuccess(true);
  69. j.setMsg("删除成功!");
  70. j.setObj(dept.getCid());
  71. } catch (Exception e) {
  72. j.setMsg("删除失败!");
  73. }
  74. super.writeJson(j);
  75. }
  76. }