KwtLogisticsOrderAddressMapper.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132
  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.sckw.transport.dao.KwtLogisticsOrderAddressMapper">
  4. <resultMap id="BaseResultMap" type="com.sckw.transport.model.KwtLogisticsOrderAddress">
  5. <id column="id" jdbcType="BIGINT" property="id" />
  6. <result column="l_order_id" jdbcType="BIGINT" property="lOrderId" />
  7. <result column="address_type" jdbcType="INTEGER" property="addressType" />
  8. <result column="name" jdbcType="VARCHAR" property="name" />
  9. <result column="type" jdbcType="BIGINT" property="type" />
  10. <result column="contacts" jdbcType="VARCHAR" property="contacts" />
  11. <result column="phone" jdbcType="VARCHAR" property="phone" />
  12. <result column="city_code" jdbcType="INTEGER" property="cityCode" />
  13. <result column="city_name" jdbcType="VARCHAR" property="cityName" />
  14. <result column="detail_address" jdbcType="VARCHAR" property="detailAddress" />
  15. <result column="lat" jdbcType="VARCHAR" property="lat" />
  16. <result column="lng" jdbcType="VARCHAR" property="lng" />
  17. <result column="fence" jdbcType="VARCHAR" property="fence" />
  18. <result column="entry_type" jdbcType="INTEGER" property="entryType" />
  19. <result column="remark" jdbcType="VARCHAR" property="remark" />
  20. <result column="status" jdbcType="INTEGER" property="status" />
  21. <result column="create_by" jdbcType="BIGINT" property="createBy" />
  22. <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
  23. <result column="update_by" jdbcType="BIGINT" property="updateBy" />
  24. <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
  25. <result column="del_flag" jdbcType="INTEGER" property="delFlag" />
  26. </resultMap>
  27. <sql id="Base_Column_List">
  28. id, l_order_id, address_type, `name`, `type`, contacts, phone, city_code, city_name,
  29. detail_address, lat, lng, fence, entry_type, remark, `status`, create_by, create_time,
  30. update_by, update_time, del_flag
  31. </sql>
  32. </mapper>