<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="cn.wisenergy.chnmuseum.party.mapper.ExhibitionBoardMapper"> <!-- 通用查询映射结果 --> <resultMap id="BaseResultMap" type="cn.wisenergy.chnmuseum.party.model.ExhibitionBoard"> <id column="id" property="id"/> <result column="name" property="name"/> <result column="serial_no" property="serialNo"/> <result column="board_copyright_owner_id" property="boardCopyrightOwnerId"/> <result column="exhibition_board_cat_id" property="exhibitionBoardCatId"/> <result column="cover" property="cover"/> <result column="qrcode_url" property="qrcodeUrl"/> <result column="remarks" property="remarks"/> <result column="video_content_copyright_owner_id" property="videoContentCopyrightOwnerId"/> <result column="video_content_cat_id" property="videoContentCatId"/> <result column="video_content_id" property="videoContentId"/> <result column="ref_material_dir" property="refMaterialDir"/> <result column="audit_status" property="auditStatus"/> <result column="is_published" property="published"/> <result column="is_deleted" property="deleted"/> <result column="create_time" property="createTime"/> <result column="update_time" property="updateTime"/> </resultMap> <!-- 通用查询结果列 --> <sql id="Base_Column_List"> id, name, serial_no, board_copyright_owner_id, exhibition_board_cat_id, cover, qrcode_url, remarks, video_content_copyright_owner_id, video_content_cat_id, video_content_id, ref_material_dir, audit_status, is_published, is_deleted, create_time, update_time </sql> </mapper>