SystemServiceFlow.java 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. package com.yihu.hos.models;
  2. import java.util.Date;
  3. import java.util.List;
  4. /**
  5. * 系统管理-服务流程
  6. * @author HZY
  7. * @vsrsion 1.0
  8. * Created at 2016/8/19.
  9. */
  10. public class SystemServiceFlow implements java.io.Serializable {
  11. private Integer id;
  12. private String code;
  13. private String name;
  14. private String path;//流程路径
  15. private String chart;//流程图路径
  16. private String description;
  17. private Integer valid;
  18. private Date createDate;
  19. private String fileType;
  20. private String flowClassList;
  21. private List<SystemServiceFlowClass> flowClassArray;
  22. public String getFileType() {
  23. return fileType;
  24. }
  25. public void setFileType(String fileType) {
  26. this.fileType = fileType;
  27. }
  28. public String getFlowClassList() {
  29. return flowClassList;
  30. }
  31. public void setFlowClassList(String flowClassList) {
  32. this.flowClassList = flowClassList;
  33. }
  34. public List<SystemServiceFlowClass> getFlowClassArray() {
  35. return flowClassArray;
  36. }
  37. public void setFlowClassArray(List<SystemServiceFlowClass> flowClassArray) {
  38. this.flowClassArray = flowClassArray;
  39. }
  40. public Integer getId() {
  41. return id;
  42. }
  43. public void setId(Integer id) {
  44. this.id = id;
  45. }
  46. public String getCode() {
  47. return code;
  48. }
  49. public void setCode(String code) {
  50. this.code = code;
  51. }
  52. public String getName() {
  53. return name;
  54. }
  55. public void setName(String name) {
  56. this.name = name;
  57. }
  58. public String getPath() {
  59. return path;
  60. }
  61. public void setPath(String path) {
  62. this.path = path;
  63. }
  64. public String getChart() {
  65. return chart;
  66. }
  67. public void setChart(String chart) {
  68. this.chart = chart;
  69. }
  70. public String getDescription() {
  71. return description;
  72. }
  73. public void setDescription(String description) {
  74. this.description = description;
  75. }
  76. public Integer getValid() {
  77. return valid;
  78. }
  79. public void setValid(Integer valid) {
  80. this.valid = valid;
  81. }
  82. public Date getCreateDate() {
  83. return createDate;
  84. }
  85. public void setCreateDate(Date createDate) {
  86. this.createDate = createDate;
  87. }
  88. }