A_M00002.java 986 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 获取功能列表
  9. */
  10. public class A_M00002 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String funcIds;//指定功能
  13. /**
  14. *指定功能
  15. */
  16. public void setFuncIds(String funcIds) {
  17. this.funcIds=funcIds;
  18. }
  19. /**
  20. *指定功能
  21. */
  22. public String getFuncIds() {
  23. return this.funcIds;
  24. }
  25. String showFlag;//显示选择
  26. /**
  27. *显示选择
  28. */
  29. public void setShowFlag(String showFlag) {
  30. this.showFlag=showFlag;
  31. }
  32. /**
  33. *显示选择
  34. */
  35. public String getShowFlag() {
  36. return this.showFlag;
  37. }
  38. String userSel;//用户可选(1-用户可选)
  39. /**
  40. *用户可选(1-用户可选)
  41. */
  42. public void setUserSel(String userSel) {
  43. this.userSel=userSel;
  44. }
  45. /**
  46. *用户可选(1-用户可选)
  47. */
  48. public String getUserSel() {
  49. return this.userSel;
  50. }
  51. }