You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
820 B
18 lines
820 B
4 years ago
|
<?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.daqing.financial.guarantee.mapper.DgAuditProcessMapper">
|
||
|
|
||
|
<!-- 通用查询映射结果 -->
|
||
|
<resultMap id="BaseResultMap" type="com.daqing.framework.domain.guarantee.DgAuditProcess">
|
||
|
<id column="id" property="id" />
|
||
|
<result column="company_id" property="companyId" />
|
||
|
<result column="emp_id" property="empId" />
|
||
|
<result column="dept_name" property="deptName" />
|
||
|
<result column="date_time" property="dateTime" />
|
||
|
<result column="status" property="status" />
|
||
|
<result column="emp_name" property="empName" />
|
||
|
<result column="remark" property="remark" />
|
||
|
</resultMap>
|
||
|
|
||
|
</mapper>
|