12345678910111213141516171819202122 |
- <?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.management.platform.mapper.LeaveAuditLogMapper">
- <!-- 通用查询映射结果 -->
- <resultMap id="BaseResultMap" type="com.management.platform.entity.LeaveAuditLog">
- <id column="id" property="id" />
- <result column="sheet_id" property="sheetId" />
- <result column="audit_node_id" property="auditNodeId" />
- <result column="auditor_id" property="auditorId" />
- <result column="auditor_name" property="auditorName" />
- <result column="is_pass" property="isPass" />
- <result column="indate" property="indate" />
- <result column="deny_reason" property="denyReason" />
- </resultMap>
- <!-- 通用查询结果列 -->
- <sql id="Base_Column_List">
- id, sheet_id, audit_node_id, auditor_id, auditor_name, is_pass, indate, deny_reason
- </sql>
- </mapper>
|