AppVersionInfo.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package com.keao.edu.user.entity;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. /**
  4. * 对应数据库表(app_version_info):
  5. */
  6. public class AppVersionInfo {
  7. /** */
  8. private Integer id;
  9. /** 平台(andorid/ios) */
  10. private String platform;
  11. /** 版本号(以V开头) */
  12. private String version;
  13. /** 状态(newest/history) */
  14. private String status;
  15. /** 是否强制更新 */
  16. private boolean isForceUpdate;
  17. /** 更新描述 */
  18. private String description;
  19. /** 下载地址 */
  20. private byte[] downloadUrl;
  21. /** 创建人 */
  22. private Integer operatorId;
  23. /** */
  24. private java.util.Date updateTime;
  25. /** */
  26. private java.util.Date createTime;
  27. public boolean isForceUpdate() {
  28. return isForceUpdate;
  29. }
  30. public void setForceUpdate(boolean forceUpdate) {
  31. isForceUpdate = forceUpdate;
  32. }
  33. public void setId(Integer id){
  34. this.id = id;
  35. }
  36. public Integer getId(){
  37. return this.id;
  38. }
  39. public void setPlatform(String platform){
  40. this.platform = platform;
  41. }
  42. public String getPlatform(){
  43. return this.platform;
  44. }
  45. public void setVersion(String version){
  46. this.version = version;
  47. }
  48. public String getVersion(){
  49. return this.version;
  50. }
  51. public void setStatus(String status){
  52. this.status = status;
  53. }
  54. public String getStatus(){
  55. return this.status;
  56. }
  57. public void setIsForceUpdate(boolean isForceUpdate){
  58. this.isForceUpdate = isForceUpdate;
  59. }
  60. public boolean getIsForceUpdate(){
  61. return this.isForceUpdate;
  62. }
  63. public void setDescription(String description){
  64. this.description = description;
  65. }
  66. public String getDescription(){
  67. return this.description;
  68. }
  69. public void setDownloadUrl(byte[] downloadUrl){
  70. this.downloadUrl = downloadUrl;
  71. }
  72. public byte[] getDownloadUrl(){
  73. return this.downloadUrl;
  74. }
  75. public void setOperatorId(Integer operatorId){
  76. this.operatorId = operatorId;
  77. }
  78. public Integer getOperatorId(){
  79. return this.operatorId;
  80. }
  81. public void setUpdateTime(java.util.Date updateTime){
  82. this.updateTime = updateTime;
  83. }
  84. public java.util.Date getUpdateTime(){
  85. return this.updateTime;
  86. }
  87. public void setCreateTime(java.util.Date createTime){
  88. this.createTime = createTime;
  89. }
  90. public java.util.Date getCreateTime(){
  91. return this.createTime;
  92. }
  93. @Override
  94. public String toString() {
  95. return ToStringBuilder.reflectionToString(this);
  96. }
  97. }