copy from screen-job/src/main/resources/mapper/CityConfigMapper.xml
copy to screen-job/src/main/resources/mapper/CityConfigAqiMapper.xml
File was copied from screen-job/src/main/resources/mapper/CityConfigMapper.xml |
| | |
| | | <?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.moral.api.mapper.CityConfigMapper"> |
| | | <mapper namespace="com.moral.api.mapper.CityConfigAqiMapper"> |
| | | |
| | | <!-- 通用查询映射结果 --> |
| | | <resultMap id="BaseResultMap" type="com.moral.api.entity.CityConfig"> |
| | | <resultMap id="BaseResultMap" type="com.moral.api.entity.CityConfigAqi"> |
| | | <id column="id" property="id"/> |
| | | <result column="city_code" property="cityCode"/> |
| | | <result column="city_name" property="cityName"/> |
| | | <result column="city_id" property="cityId"/> |
| | | <result column="location_id" property="locationId"/> |
| | | <result column="is_delete" property="isDelete"/> |
| | | </resultMap> |
| | | |