35 lines
1.8 KiB
XML
35 lines
1.8 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.ManicuristMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.cj.jiaqingjiayi.model.domain.Manicurist">
|
||
|
<id property="id" column="id" jdbcType="BIGINT"/>
|
||
|
<result property="businessId" column="businessId" jdbcType="BIGINT"/>
|
||
|
<result property="userId" column="userId" jdbcType="BIGINT"/>
|
||
|
<result property="manicuristName" column="manicuristName" jdbcType="VARCHAR"/>
|
||
|
<result property="gender" column="gender" jdbcType="TINYINT"/>
|
||
|
<result property="phone" column="phone" jdbcType="VARCHAR"/>
|
||
|
<result property="email" column="email" jdbcType="VARCHAR"/>
|
||
|
<result property="employment_date" column="employment_date" jdbcType="DATE"/>
|
||
|
<result property="specialties" column="specialties" jdbcType="VARCHAR"/>
|
||
|
<result property="rating" column="rating" jdbcType="DECIMAL"/>
|
||
|
<result property="salary" column="salary" jdbcType="DECIMAL"/>
|
||
|
<result property="isDelete" column="isDelete" jdbcType="TINYINT"/>
|
||
|
<result property="createTime" column="createTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateTime" column="updateTime" jdbcType="TIMESTAMP"/>
|
||
|
<result property="manicuristAvatar" column="manicuristAvatar" jdbcType="VARCHAR"/>
|
||
|
<result property="auditStatus" column="auditStatus" jdbcType="TINYINT"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,userId,manicuristName,
|
||
|
gender,phone,email,
|
||
|
employment_date,specialties,rating,
|
||
|
salary,isDelete,createTime,
|
||
|
updateTime,manicuristAvatar,businessId,
|
||
|
auditStatus
|
||
|
</sql>
|
||
|
</mapper>
|