WmWkArticleMapper.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, hnqz All rights reserved.
  5. ~
  6. ~ Redistribution and use in source and binary forms, with or without
  7. ~ modification, are permitted provided that the following conditions are met:
  8. ~
  9. ~ Redistributions of source code must retain the above copyright notice,
  10. ~ this list of conditions and the following disclaimer.
  11. ~ Redistributions in binary form must reproduce the above copyright
  12. ~ notice, this list of conditions and the following disclaimer in the
  13. ~ documentation and/or other materials provided with the distribution.
  14. ~ Neither the name of the pig4cloud.com developer nor the names of its
  15. ~ contributors may be used to endorse or promote products derived from
  16. ~ this software without specific prior written permission.
  17. ~ Author: hnqz
  18. ~
  19. -->
  20. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  21. <mapper namespace="com.qunzhixinxi.hnqz.admin.mapper.WmWkArticleMapper">
  22. <resultMap id="wmWkArticleMap" type="com.qunzhixinxi.hnqz.admin.entity.WmWkArticle">
  23. <id property="id" column="id"/>
  24. <result property="title" column="title"/>
  25. <result property="author" column="author"/>
  26. <result property="fm" column="fm"/>
  27. <result property="content" column="content"/>
  28. <result property="source" column="source"/>
  29. <result property="deptId" column="dept_id"/>
  30. <result property="delFlag" column="del_flag"/>
  31. <result property="enableFlag" column="enable_flag"/>
  32. <result property="tenantId" column="tenant_id"/>
  33. <result property="createTime" column="create_time"/>
  34. <result property="createUser" column="create_user"/>
  35. <result property="updateTime" column="update_time"/>
  36. <result property="updateUser" column="update_user"/>
  37. <result property="forwardNum" column="forward_num"/>
  38. <result property="description" column="description"/>
  39. <result property="score" column="score"/>
  40. </resultMap>
  41. </mapper>