郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
27
28
29
<?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.gkhy.safePlatform.safeCheck.repository.SafeCheckWorkRepositoryBak20220718" >
    <resultMap id="BaseResultMap" type="com.gkhy.safePlatform.safeCheck.entity.SafeCheckWorkBak20220718" >
        <id column="id" property="id" jdbcType="BIGINT" />
        <result column="type" property="type" jdbcType="TINYINT" />
        <result column="status" property="status" jdbcType="TINYINT" />
        <result column="create_uid" property="createUid" jdbcType="BIGINT" />
        <result column="exec_uid" property="execUid" jdbcType="BIGINT"/>
<!--        <result column="notice_uid" property="noticeUid" jdbcType="BIGINT"/>-->
        <result column="interval_seconds" property="intervalSeconds" jdbcType="BIGINT"/>
        <result column="effect_seconds" property="effectSeconds" jdbcType="BIGINT"/>
        <result column="notice_seconds" property="noticeSeconds" jdbcType="BIGINT"/>
        <result column="start_time" property="startTime" jdbcType="TIMESTAMP"/>
        <result column="create_time" property="createTime" jdbcType="TIMESTAMP"/>
        <result column="create_uname" property="createUname" jdbcType="VARCHAR"/>
        <result column="exec_uname" property="execUname" jdbcType="VARCHAR"/>
        <result column="title" property="title" jdbcType="VARCHAR"/>
    </resultMap>
    <sql id="all_Column_List" >
        <!--          -->
        id,type,status,create_uid,exec_uid,interval_seconds,effect_seconds,notice_seconds,start_time,create_time,create_uname,exec_uname,title
    </sql>
 
    <sql id="insert_fields_values" >
        <!--          -->
        #{id},#{type},#{status},#{createUid},#{execUid},#{intervalSeconds},#{effectSeconds},#{noticeSeconds},#{startTime},#{createTime},#{createUname},#{execUname},#{title}
    </sql>
</mapper>