xiangpei
2025-04-18 ccadf9480d4e6a9dcc227a2a0b1f9ae0612e36fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.monkeylessey.job.mapper.SysJobMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.monkeylessey.job.domain.vo.SysJobVO">
        <result column="id" property="id" />
        <result column="gmt_create" property="gmtCreate" />
        <result column="create_by" property="createBy" />
        <result column="gmt_update" property="gmtUpdate" />
        <result column="update_by" property="updateBy" />
        <result column="job_group" property="jobGroup" />
        <result column="job_key" property="jobKey" />
        <result column="job_class" property="jobClass" />
        <result column="remark" property="remark" />
        <result column="job_status" property="jobStatus" />
        <result column="cron_express" property="cronExpress" />
    </resultMap>
 
</mapper>