HouseFeature.java 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.izouma.awesomeadmin.model;
  2. import java.util.*;
  3. import com.fasterxml.jackson.annotation.JsonAutoDetect;
  4. import com.fasterxml.jackson.annotation.JsonInclude;
  5. @JsonAutoDetect
  6. @JsonInclude(JsonInclude.Include.NON_NULL)
  7. public class HouseFeature{
  8. private Integer id;
  9. private String delFlag;
  10. private String name;
  11. private String code;
  12. private String remark;
  13. private Integer rank;
  14. private Integer hot;
  15. private Date createTime;
  16. private Date updateTime;
  17. public Integer getId(){
  18. return this.id;
  19. }
  20. public void setId(Integer id){
  21. this.id = id;
  22. }
  23. public String getDelFlag(){
  24. return this.delFlag;
  25. }
  26. public void setDelFlag(String delFlag){
  27. this.delFlag = delFlag;
  28. }
  29. public String getName(){
  30. return this.name;
  31. }
  32. public void setName(String name){
  33. this.name = name;
  34. }
  35. public String getCode(){
  36. return this.code;
  37. }
  38. public void setCode(String code){
  39. this.code = code;
  40. }
  41. public String getRemark(){
  42. return this.remark;
  43. }
  44. public void setRemark(String remark){
  45. this.remark = remark;
  46. }
  47. public Integer getRank(){
  48. return this.rank;
  49. }
  50. public void setRank(Integer rank){
  51. this.rank = rank;
  52. }
  53. public Integer getHot(){
  54. return this.hot;
  55. }
  56. public void setHot(Integer hot){
  57. this.hot = hot;
  58. }
  59. public Date getCreateTime(){
  60. return this.createTime;
  61. }
  62. public void setCreateTime(Date createTime){
  63. this.createTime = createTime;
  64. }
  65. public Date getUpdateTime(){
  66. return this.updateTime;
  67. }
  68. public void setUpdateTime(Date updateTime){
  69. this.updateTime = updateTime;
  70. }
  71. }