AppDTO.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.qmth.ops.biz.domain;
  2. public class AppDTO {
  3. private Long id;
  4. private String code;
  5. private String name;
  6. private Long masterVersionId;
  7. private String masterVersionName;
  8. private Long createTime;
  9. private Long updateTime;
  10. public Long getId() {
  11. return id;
  12. }
  13. public void setId(Long id) {
  14. this.id = id;
  15. }
  16. public String getCode() {
  17. return code;
  18. }
  19. public void setCode(String code) {
  20. this.code = code;
  21. }
  22. public String getName() {
  23. return name;
  24. }
  25. public void setName(String name) {
  26. this.name = name;
  27. }
  28. public Long getMasterVersionId() {
  29. return masterVersionId;
  30. }
  31. public void setMasterVersionId(Long masterVersionId) {
  32. this.masterVersionId = masterVersionId;
  33. }
  34. public String getMasterVersionName() {
  35. return masterVersionName;
  36. }
  37. public void setMasterVersionName(String masterVersionName) {
  38. this.masterVersionName = masterVersionName;
  39. }
  40. public Long getCreateTime() {
  41. return createTime;
  42. }
  43. public void setCreateTime(Long createTime) {
  44. this.createTime = createTime;
  45. }
  46. public Long getUpdateTime() {
  47. return updateTime;
  48. }
  49. public void setUpdateTime(Long updateTime) {
  50. this.updateTime = updateTime;
  51. }
  52. }