123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.ruoyi.web.mapper.HouseInfoMapper">
- <resultMap id="BaseResultMap" type="com.ruoyi.web.domain.entity.HouseInfo">
- <id property="id" column="id" jdbcType="INTEGER"/>
- <result property="houseCode" column="house_code" jdbcType="VARCHAR"/>
- <result property="villageId" column="village_id" jdbcType="INTEGER"/>
- <result property="villageName" column="village_name" jdbcType="VARCHAR"/>
- <result property="doorplateNumber" column="doorplate_number" jdbcType="VARCHAR"/>
- <result property="houseAddress" column="house_address" jdbcType="VARCHAR"/>
- <result property="houseOwnerId" column="house_owner_id" jdbcType="INTEGER"/>
- <result property="totalPoints" column="total_points" jdbcType="INTEGER"/>
- <result property="remainingPoints" column="remaining_points" jdbcType="INTEGER"/>
- <result property="houseType" column="house_type" jdbcType="TINYINT"/>
- <result property="houseCategory" column="house_category" jdbcType="TINYINT"/>
- <result property="buildingArea" column="building_area" jdbcType="DECIMAL"/>
- <result property="gridId" column="grid_id" jdbcType="INTEGER"/>
- <result property="photoUrl" column="photo_url" jdbcType="VARCHAR"/>
- <result property="houseTags" column="house_tags" jdbcType="VARCHAR"/>
- <result property="qrCodeUrl" column="qr_code_url" jdbcType="VARCHAR"/>
- <result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
- <result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
- <result property="delFlag" column="del_flag" jdbcType="CHAR"/>
- </resultMap>
- <sql id="Base_Column_List">
- id
- ,house_code,village_id,
- village_name,doorplate_number,house_address,
- house_owner_id,total_points,remaining_points,
- house_type,house_category,building_area,
- grid_id,photo_url,house_tags,
- qr_code_url,create_time,update_time,
- del_flag
- </sql>
- </mapper>
|