do mapper
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?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.cool.store.mapper.EmployeeTrainingMapper">
|
||||
<resultMap id="BaseResultMap" type="com.cool.store.entity.EmployeeTrainingDO">
|
||||
<!--
|
||||
WARNING - @mbg.generated
|
||||
-->
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="shop_id" jdbcType="BIGINT" property="shopId" />
|
||||
<result column="region_id" jdbcType="BIGINT" property="regionId" />
|
||||
<result column="xfsg_user_detail_id" jdbcType="BIGINT" property="xfsgUserDetailId" />
|
||||
<result column="assign_flag" jdbcType="TINYINT" property="assignFlag" />
|
||||
<result column="training_start_time" jdbcType="TIMESTAMP" property="trainingStartTime" />
|
||||
<result column="training_end_time" jdbcType="TIMESTAMP" property="trainingEndTime" />
|
||||
<result column="training_store_id" jdbcType="VARCHAR" property="trainingStoreId" />
|
||||
<result column="training_teacher_user_id" jdbcType="VARCHAR" property="trainingTeacherUserId" />
|
||||
<result column="practical_assessment_user_id" jdbcType="VARCHAR" property="practicalAssessmentUserId" />
|
||||
<result column="estimated_assessment_time" jdbcType="TIMESTAMP" property="estimatedAssessmentTime" />
|
||||
<result column="actual_assessment_time" jdbcType="TIMESTAMP" property="actualAssessmentTime" />
|
||||
<result column="assessment_num" jdbcType="INTEGER" property="assessmentNum" />
|
||||
<result column="assessment_total_num" jdbcType="INTEGER" property="assessmentTotalNum" />
|
||||
<result column="theoretical_exam_status" jdbcType="TINYINT" property="theoreticalExamStatus" />
|
||||
<result column="theoretical_exam_score" jdbcType="INTEGER" property="theoreticalExamScore" />
|
||||
<result column="practical_exam_status" jdbcType="TINYINT" property="practicalExamStatus" />
|
||||
<result column="practical_exam_score" jdbcType="INTEGER" property="practicalExamScore" />
|
||||
<result column="assessment_status" jdbcType="TINYINT" property="assessmentStatus" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="deleted" jdbcType="BIT" property="deleted" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
@@ -0,0 +1,29 @@
|
||||
<?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.cool.store.mapper.TempUserDetailMapper">
|
||||
<resultMap id="BaseResultMap" type="com.cool.store.entity.TempUserDetailDO">
|
||||
<!--
|
||||
WARNING - @mbg.generated
|
||||
-->
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="line_id" jdbcType="BIGINT" property="lineId" />
|
||||
<result column="shop_id" jdbcType="BIGINT" property="shopId" />
|
||||
<result column="region_id" jdbcType="BIGINT" property="regionId" />
|
||||
<result column="mobile" jdbcType="VARCHAR" property="mobile" />
|
||||
<result column="username" jdbcType="VARCHAR" property="username" />
|
||||
<result column="sex" jdbcType="VARCHAR" property="sex" />
|
||||
<result column="age" jdbcType="INTEGER" property="age" />
|
||||
<result column="id_card" jdbcType="VARCHAR" property="idCard" />
|
||||
<result column="educational" jdbcType="TINYINT" property="educational" />
|
||||
<result column="role_id" jdbcType="BIGINT" property="roleId" />
|
||||
<result column="id_card_positive_url" jdbcType="VARCHAR" property="idCardPositiveUrl" />
|
||||
<result column="id_card_negative_url" jdbcType="VARCHAR" property="idCardNegativeUrl" />
|
||||
<result column="health_certificate_url" jdbcType="VARCHAR" property="healthCertificateUrl" />
|
||||
<result column="register_time" jdbcType="TIMESTAMP" property="registerTime" />
|
||||
<result column="source" jdbcType="VARCHAR" property="source" />
|
||||
<result column="submit_time" jdbcType="TIMESTAMP" property="submitTime" />
|
||||
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
||||
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
||||
<result column="deleted" jdbcType="BIT" property="deleted" />
|
||||
</resultMap>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user