24 lines
1.1 KiB
XML
24 lines
1.1 KiB
XML
<?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.cj.jiaqingjiayi.mapper.RecruitmentMapper">
|
|
|
|
<resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.Recruitment">
|
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
|
<result property="businessId" column="businessId" jdbcType="BIGINT"/>
|
|
<result property="businessName" column="businessName" jdbcType="VARCHAR"/>
|
|
<result property="requirements" column="requirements" jdbcType="VARCHAR"/>
|
|
<result property="salary" column="salary" jdbcType="VARCHAR"/>
|
|
<result property="quantity" column="quantity" jdbcType="INTEGER"/>
|
|
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
|
|
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
|
|
</resultMap>
|
|
|
|
<sql id="Base_Column_List">
|
|
id,businessId,businessName,
|
|
requirements,salary,quantity,
|
|
createTime,updateTime
|
|
</sql>
|
|
</mapper>
|