123456789101112131415161718 |
- <?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.zhgd.scs.mapper.WorkbenchTaskMapper">
- <resultMap id="BaseResultMap" type="com.zhgd.scs.domain.WorkbenchTask">
- <id property="id" column="id" jdbcType="BIGINT"/>
- <result property="taskId" column="task_id" jdbcType="BIGINT"/>
- <result property="userId" column="user_id" jdbcType="BIGINT"/>
- <result property="state" column="state" jdbcType="INTEGER"/>
- <result property="worklistType" column="worklist_type" jdbcType="INTEGER"/>
- <result property="content" column="content" jdbcType="VARCHAR"/>
- <result property="taskType" column="task_type" jdbcType="INTEGER"/>
- </resultMap>
- </mapper>
|