zj
2024-06-03 a15e4f9fa2c34c4f4bd69f924c77e72a4c80e5ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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="com.nq.dao.SiteAdminIndexMapper">
 
    <resultMap id="BaseResultMap" type="com.nq.pojo.SiteAdminIndex">
            <id property="id" column="id" jdbcType="INTEGER"/>
            <result property="colorWeak" column="color_weak" jdbcType="VARCHAR"/>
            <result property="contentWidth" column="content_width" jdbcType="VARCHAR"/>
            <result property="fixSiderbar" column="fix_siderbar" jdbcType="VARCHAR"/>
            <result property="fixedHeader" column="fixed_header" jdbcType="VARCHAR"/>
            <result property="hideCopyButton" column="hide_copy_button" jdbcType="VARCHAR"/>
            <result property="hideHintAlert" column="hide_hint_alert" jdbcType="VARCHAR"/>
            <result property="layout" column="layout" jdbcType="VARCHAR"/>
            <result property="primaryColor" column="primary_color" jdbcType="VARCHAR"/>
            <result property="theme" column="theme" jdbcType="VARCHAR"/>
    </resultMap>
 
    <sql id="Base_Column_List">
        id,color_weak,content_width,
        fix_siderbar,fixed_header,hide_copy_button,
        hide_hint_alert,layout,primary_color,
        theme
    </sql>
</mapper>