Brak opisu

TPestcPestKindMapper.xml 1.1KB

123456789101112131415161718192021222324
  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.yt.zhylplat.modulePest.common.mapper.TPestcPestKindMapper">
  4. <!-- 通用查询映射结果 -->
  5. <resultMap id="BaseResultMap" type="com.yt.zhylplat.modulePest.common.entity.TPestcPestKind">
  6. <id column="id" property="id" />
  7. <result column="kind_name" property="kindName" />
  8. <result column="threshold_value" property="thresholdValue" />
  9. <result column="remark" property="remark" />
  10. <result column="create_user_id" property="createUserId" />
  11. <result column="create_date" property="createDate" />
  12. <result column="update_user_id" property="updateUserId" />
  13. <result column="update_date" property="updateDate" />
  14. <result column="del_flg" property="delFlg" />
  15. </resultMap>
  16. <!-- 通用查询结果列 -->
  17. <sql id="Base_Column_List">
  18. id, kind_name, threshold_value, remark, create_user_id, create_date, update_user_id, update_date, del_flg
  19. </sql>
  20. </mapper>