parent
597f18b651
commit
d57ff4141b
@ -0,0 +1,177 @@
|
||||
package com.ssf.mysqloracletest.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 出租房信息表
|
||||
* @TableName meta_rental_housing_info
|
||||
*/
|
||||
@TableName(value ="meta_rental_housing_info")
|
||||
@Data
|
||||
public class MetaRentalHousingInfo implements Serializable {
|
||||
/**
|
||||
* 主键
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 出租房屋地址
|
||||
*/
|
||||
private String rentalHousingAddress;
|
||||
|
||||
/**
|
||||
* 房主
|
||||
*/
|
||||
private String homeowner;
|
||||
|
||||
/**
|
||||
* 房主身份证
|
||||
*/
|
||||
private String homeownerIdCard;
|
||||
|
||||
/**
|
||||
* 房主户籍地区县
|
||||
*/
|
||||
private String homeownerHouseHoldRegister;
|
||||
|
||||
/**
|
||||
* 户籍地址详情
|
||||
*/
|
||||
private String homeownerHouseHoldAddress;
|
||||
|
||||
/**
|
||||
* 房主现居住地区县
|
||||
*/
|
||||
private String homeownerHabitationRegister;
|
||||
|
||||
/**
|
||||
* 房主现居住地
|
||||
*/
|
||||
private String homeownerHabitationAddress;
|
||||
|
||||
/**
|
||||
* 房主联系方式
|
||||
*/
|
||||
private String homeownerPhone;
|
||||
|
||||
/**
|
||||
* 状态标识:0有效,1无效
|
||||
*/
|
||||
private Integer stateFlag;
|
||||
|
||||
/**
|
||||
* 出租房到期时间
|
||||
*/
|
||||
private String rentalHousingEndDate;
|
||||
|
||||
/**
|
||||
* 派出所代码
|
||||
*/
|
||||
private String policeStationCode;
|
||||
|
||||
/**
|
||||
* 警务区编码
|
||||
*/
|
||||
private String policeDistrictCode;
|
||||
|
||||
/**
|
||||
* 流动人口标准地址ID
|
||||
|
||||
*/
|
||||
private String floatingPopulationStandardAddressId;
|
||||
|
||||
/**
|
||||
* 流动人口标准地址
|
||||
*/
|
||||
private String floatingPopulationStandardAddress;
|
||||
|
||||
/**
|
||||
* 出租房状态
|
||||
*/
|
||||
private Integer rentalHousingStatus;
|
||||
|
||||
/**
|
||||
* 是否出租
|
||||
*/
|
||||
private Integer isRentalHousing;
|
||||
|
||||
/**
|
||||
* 居住类型
|
||||
*/
|
||||
private Integer residentialType;
|
||||
|
||||
/**
|
||||
* 房屋等级
|
||||
*/
|
||||
private Integer rentalHousingGrade;
|
||||
|
||||
/**
|
||||
* 重点房屋
|
||||
*/
|
||||
private Integer impRentalHousing;
|
||||
|
||||
/**
|
||||
* 重点人员
|
||||
*/
|
||||
private Integer impUserRentalHousing;
|
||||
|
||||
/**
|
||||
* 是否群租房
|
||||
*/
|
||||
private Integer isGroupRentalHousing;
|
||||
|
||||
/**
|
||||
* 住房类型
|
||||
*/
|
||||
private Integer rentalHousingType;
|
||||
|
||||
/**
|
||||
* 租房人姓名
|
||||
*/
|
||||
private String rentingHouseUserName;
|
||||
|
||||
/**
|
||||
* 租房人联系方式
|
||||
*/
|
||||
private String rentingHouseUserPhone;
|
||||
|
||||
/**
|
||||
* 租房人证件号码
|
||||
*/
|
||||
private String rentingHouseUserIdCard;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private Date createTime;
|
||||
|
||||
/**
|
||||
* 创建者
|
||||
*/
|
||||
private Integer createBy;
|
||||
|
||||
/**
|
||||
* 更新时间
|
||||
*/
|
||||
private Date updateTime;
|
||||
|
||||
/**
|
||||
* 更新者
|
||||
*/
|
||||
private Integer updateBy;
|
||||
|
||||
/**
|
||||
* 0:不活跃,1:活跃
|
||||
*/
|
||||
private Integer isActive;
|
||||
|
||||
@TableField(exist = false)
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package com.ssf.mysqloracletest.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.ssf.mysqloracletest.domain.MetaRentalHousingInfo;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author 10503
|
||||
* @description 针对表【meta_rental_housing_info(出租房信息表)】的数据库操作Mapper
|
||||
* @createDate 2023-12-04 10:11:22
|
||||
* @Entity com.ssf.mysqloracletest.domain.MetaRentalHousingInfo
|
||||
*/
|
||||
@Mapper
|
||||
public interface MetaRentalHousingInfoMapper extends BaseMapper<MetaRentalHousingInfo> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,13 @@
|
||||
package com.ssf.mysqloracletest.service;
|
||||
|
||||
import com.ssf.mysqloracletest.domain.MetaRentalHousingInfo;
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
|
||||
/**
|
||||
* @author 10503
|
||||
* @description 针对表【meta_rental_housing_info(出租房信息表)】的数据库操作Service
|
||||
* @createDate 2023-12-04 10:11:22
|
||||
*/
|
||||
public interface MetaRentalHousingInfoService extends IService<MetaRentalHousingInfo> {
|
||||
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
package com.ssf.mysqloracletest.service.impl;
|
||||
|
||||
import com.baomidou.dynamic.datasource.annotation.DS;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.ssf.mysqloracletest.domain.MetaRentalHousingInfo;
|
||||
import com.ssf.mysqloracletest.service.MetaRentalHousingInfoService;
|
||||
import com.ssf.mysqloracletest.mapper.MetaRentalHousingInfoMapper;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* @author 10503
|
||||
* @description 针对表【meta_rental_housing_info(出租房信息表)】的数据库操作Service实现
|
||||
* @createDate 2023-12-04 10:11:22
|
||||
*/
|
||||
@Service
|
||||
public class MetaRentalHousingInfoServiceImpl extends ServiceImpl<MetaRentalHousingInfoMapper, MetaRentalHousingInfo>
|
||||
implements MetaRentalHousingInfoService{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in new issue