SystemServiceFlow.java 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.yihu.hos.models;
  2. import java.util.Date;
  3. /**
  4. * Created by lingfeng on 2016/8/8.
  5. */
  6. public class SystemServiceFlow {
  7. Integer id;
  8. String code;
  9. String name;
  10. String path;
  11. String chart;
  12. Integer valid;
  13. Date createDate;
  14. public Integer getId() {
  15. return id;
  16. }
  17. public void setId(Integer id) {
  18. this.id = id;
  19. }
  20. public String getCode() {
  21. return code;
  22. }
  23. public void setCode(String code) {
  24. this.code = code;
  25. }
  26. public String getName() {
  27. return name;
  28. }
  29. public void setName(String name) {
  30. this.name = name;
  31. }
  32. public String getPath() {
  33. return path;
  34. }
  35. public void setPath(String path) {
  36. this.path = path;
  37. }
  38. public String getChart() {
  39. return chart;
  40. }
  41. public void setChart(String chart) {
  42. this.chart = chart;
  43. }
  44. public Integer getValid() {
  45. return valid;
  46. }
  47. public void setValid(Integer valid) {
  48. this.valid = valid;
  49. }
  50. public Date getCreateDate() {
  51. return createDate;
  52. }
  53. public void setCreateDate(Date createDate) {
  54. this.createDate = createDate;
  55. }
  56. }