A_ES0002.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /**
  2. * 无锡发动机
  3. */
  4. package com.miniframe.generate.comm.es;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 项目新增修改
  9. */
  10. public class A_ES0002 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String pid;//项目Id
  13. /**
  14. *项目Id
  15. */
  16. public void setPid(String pid) {
  17. this.pid=pid;
  18. }
  19. /**
  20. *项目Id
  21. */
  22. public String getPid() {
  23. return this.pid;
  24. }
  25. String name;//项目名称
  26. /**
  27. *项目名称
  28. */
  29. public void setName(String name) {
  30. this.name=name;
  31. }
  32. /**
  33. *项目名称
  34. */
  35. public String getName() {
  36. return this.name;
  37. }
  38. String remark;//项目描述
  39. /**
  40. *项目描述
  41. */
  42. public void setRemark(String remark) {
  43. this.remark=remark;
  44. }
  45. /**
  46. *项目描述
  47. */
  48. public String getRemark() {
  49. return this.remark;
  50. }
  51. String flow;//流程
  52. /**
  53. *流程
  54. */
  55. public void setFlow(String flow) {
  56. this.flow=flow;
  57. }
  58. /**
  59. *流程
  60. */
  61. public String getFlow() {
  62. return this.flow;
  63. }
  64. String keywords;//类型
  65. /**
  66. *类型
  67. */
  68. public void setKeywords(String keywords) {
  69. this.keywords=keywords;
  70. }
  71. /**
  72. *类型
  73. */
  74. public String getKeywords() {
  75. return this.keywords;
  76. }
  77. }