GenTableMapper.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~
  4. ~ Copyright (c) 2018-2025, lengleng 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: lengleng ([email protected])
  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.pig4cloud.pig.codegen.mapper.GenTableMapper">
  22. <resultMap id="tableMap" type="com.pig4cloud.pig.codegen.entity.GenTable">
  23. <id property="id" column="id"/>
  24. <result property="tableName" column="table_name"/>
  25. <result property="className" column="class_name"/>
  26. <result property="tableComment" column="table_comment"/>
  27. <result property="author" column="author"/>
  28. <result property="email" column="email"/>
  29. <result property="packageName" column="package_name"/>
  30. <result property="version" column="version"/>
  31. <result property="generatorType" column="generator_type"/>
  32. <result property="backendPath" column="backend_path"/>
  33. <result property="frontendPath" column="frontend_path"/>
  34. <result property="moduleName" column="module_name"/>
  35. <result property="functionName" column="function_name"/>
  36. <result property="formLayout" column="form_layout"/>
  37. <result property="baseclassId" column="baseclass_id"/>
  38. <result property="createTime" column="create_time"/>
  39. </resultMap>
  40. </mapper>