MaintenanceDisposeMapper.xml 1.1 KB

123456789101112131415161718192021
  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="cn.com.ty.lift.business.maintenance.dao.mapper.MaintenanceDisposeMapper" >
  4. <resultMap id="BaseResultMap" type="cn.com.ty.lift.business.maintenance.dao.entity.MaintenanceDispose" >
  5. <id column="id" property="id" jdbcType="INTEGER" />
  6. <result column="maintenance_record_id" property="maintenanceRecordId" jdbcType="BIGINT" />
  7. <result column="mt_company_id" property="mtCompanyId" jdbcType="BIGINT" />
  8. <result column="lift_id" property="liftId" jdbcType="BIGINT" />
  9. <result column="type" property="type" jdbcType="TINYINT" />
  10. <result column="is_standard" property="isStandard" jdbcType="TINYINT" />
  11. <result column="reason" property="reason" jdbcType="VARCHAR" />
  12. <result column="deal_user_id" property="dealUserId" jdbcType="BIGINT" />
  13. <result column="deal_date" property="dealDate" jdbcType="TIMESTAMP" />
  14. </resultMap>
  15. <sql id="Base_Column_List" >
  16. id, maintenance_record_id, mt_company_id, lift_id, type, is_standard, reason, deal_user_id,
  17. deal_date
  18. </sql>
  19. </mapper>