| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.izouma.awesomeadmin.model;
- import java.util.*;
- import com.fasterxml.jackson.annotation.JsonAutoDetect;
- import com.fasterxml.jackson.annotation.JsonInclude;
- @JsonAutoDetect
- @JsonInclude(JsonInclude.Include.NON_NULL)
- public class HouseFeature{
- private Integer id;
- private String delFlag;
- private String name;
- private String code;
- private String remark;
- private Integer rank;
- private Integer hot;
- private Date createTime;
- private Date updateTime;
- public Integer getId(){
- return this.id;
- }
- public void setId(Integer id){
- this.id = id;
- }
- public String getDelFlag(){
- return this.delFlag;
- }
- public void setDelFlag(String delFlag){
- this.delFlag = delFlag;
- }
- public String getName(){
- return this.name;
- }
- public void setName(String name){
- this.name = name;
- }
- public String getCode(){
- return this.code;
- }
- public void setCode(String code){
- this.code = code;
- }
- public String getRemark(){
- return this.remark;
- }
- public void setRemark(String remark){
- this.remark = remark;
- }
- public Integer getRank(){
- return this.rank;
- }
- public void setRank(Integer rank){
- this.rank = rank;
- }
- public Integer getHot(){
- return this.hot;
- }
- public void setHot(Integer hot){
- this.hot = hot;
- }
- public Date getCreateTime(){
- return this.createTime;
- }
- public void setCreateTime(Date createTime){
- this.createTime = createTime;
- }
- public Date getUpdateTime(){
- return this.updateTime;
- }
- public void setUpdateTime(Date updateTime){
- this.updateTime = updateTime;
- }
- }
|