调解系统后端服务

CountryMapper.xml 1.5KB

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.ruoyi.system.mapper.baseinfo.CountryMapper">
  4. <resultMap id="BaseResultMap" type="com.ruoyi.system.domain.entity.baseinfo.Country">
  5. <!--
  6. WARNING - @mbg.generated
  7. -->
  8. <id column="CountryId" jdbcType="INTEGER" property="countryid" />
  9. <result column="CountryName" jdbcType="VARCHAR" property="countryname" />
  10. <result column="EnglishName" jdbcType="VARCHAR" property="englishname" />
  11. <result column="AbbreviationName" jdbcType="VARCHAR" property="abbreviationname" />
  12. <result column="CountryNameLocal" jdbcType="VARCHAR" property="countrynamelocal" />
  13. <result column="FlagPath" jdbcType="VARCHAR" property="flagpath" />
  14. <result column="IsActive" jdbcType="TINYINT" property="isactive" />
  15. <result column="Longitude" jdbcType="DECIMAL" property="longitude" />
  16. <result column="Latitude" jdbcType="DECIMAL" property="latitude" />
  17. <result column="url" jdbcType="VARCHAR" property="url" />
  18. <result column="Timezone" jdbcType="INTEGER" property="timezone" />
  19. <result column="CreatedBy" jdbcType="INTEGER" property="createdby" />
  20. <result column="DateCreated" jdbcType="TIMESTAMP" property="datecreated" />
  21. <result column="UpdatedBy" jdbcType="INTEGER" property="updatedby" />
  22. <result column="DateUpdated" jdbcType="TIMESTAMP" property="dateupdated" />
  23. <result column="CountryJson" jdbcType="VARCHAR" property="countryjson" />
  24. </resultMap>
  25. </mapper>