SystemApp.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.yihu.hos.system.model;
  2. import java.util.Date;
  3. /**
  4. * SystemApp entity. @author MyEclipse Persistence Tools
  5. */
  6. public class SystemApp implements java.io.Serializable {
  7. // Fields
  8. private String id;
  9. private String code; //Ӣ����
  10. private String name;
  11. private String appKey;
  12. private String appType;
  13. private String orgId;
  14. private String status;
  15. private String appUrl;
  16. private String appSecret;
  17. private String icon;
  18. private String developer;
  19. private Date createDate;
  20. // Constructors
  21. /** default constructor */
  22. public SystemApp() {
  23. }
  24. /** minimal constructor */
  25. public SystemApp(String name) {
  26. this.name = name;
  27. }
  28. // Property accessors
  29. public String getId() {
  30. return this.id;
  31. }
  32. public void setId(String id) {
  33. this.id = id;
  34. }
  35. public String getCode() {
  36. return this.code;
  37. }
  38. public void setCode(String code) {
  39. this.code = code;
  40. }
  41. public String getName() {
  42. return this.name;
  43. }
  44. public void setName(String name) {
  45. this.name = name;
  46. }
  47. public String getAppKey() {
  48. return this.appKey;
  49. }
  50. public void setAppKey(String appKey) {
  51. this.appKey = appKey;
  52. }
  53. public String getAppType() {
  54. return this.appType;
  55. }
  56. public void setAppType(String appType) {
  57. this.appType = appType;
  58. }
  59. public String getOrgId() {
  60. return this.orgId;
  61. }
  62. public void setOrgId(String orgId) {
  63. this.orgId = orgId;
  64. }
  65. public String getStatus() {
  66. return this.status;
  67. }
  68. public void setStatus(String status) {
  69. this.status = status;
  70. }
  71. public String getAppUrl() {
  72. return this.appUrl;
  73. }
  74. public void setAppUrl(String appUrl) {
  75. this.appUrl = appUrl;
  76. }
  77. public String getAppSecret() {
  78. return appSecret;
  79. }
  80. public void setAppSecret(String appSecret) {
  81. this.appSecret = appSecret;
  82. }
  83. public String getIcon() {
  84. return icon;
  85. }
  86. public void setIcon(String icon) {
  87. this.icon = icon;
  88. }
  89. public String getDeveloper() {
  90. return developer;
  91. }
  92. public void setDeveloper(String developer) {
  93. this.developer = developer;
  94. }
  95. public Date getCreateDate() {
  96. return createDate;
  97. }
  98. public void setCreateDate(Date createDate) {
  99. this.createDate = createDate;
  100. }
  101. }