保存进度!
This commit is contained in:
parent
d1aebdc7f5
commit
eb0bd517d5
@ -0,0 +1,20 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-11-25 18:48:11
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/mapper/TWrTelsalerMapper.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
import com.cpic.xim.mybatis.pojo.TWrTelsalerRecord;
|
||||
|
||||
public interface TWrTelsalerMapper
|
||||
{
|
||||
public TWrTelsalerRecord queryTWrTelsalerInfo( @Param("telsaler") String telsaler );
|
||||
|
||||
public void insertTWrTelsalerRecordToDB( TWrTelsalerRecord record );
|
||||
}
|
@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cpic.xim.mybatis.mapper.TWrTelsalerMapper">
|
||||
<select id="queryTWrTelsalerInfo" resultMap="TWrTelsaler">
|
||||
select t.人员姓名,
|
||||
t.人员工号,
|
||||
t.籍贯,
|
||||
t.参加工作时间,
|
||||
t.入职日期,
|
||||
t.入司日期,
|
||||
t.业务类型,
|
||||
t.办公地省,
|
||||
t.办公地市,
|
||||
t.人员类别,
|
||||
t.现任岗位,
|
||||
t.现任职级,
|
||||
t.机构名称,
|
||||
t.职场分类,
|
||||
t.片区名称,
|
||||
t.团队名称,
|
||||
t.对口分公司,
|
||||
t.展业地区,
|
||||
t.招聘渠道,
|
||||
t.渠道明细,
|
||||
t.全日制最高学历,
|
||||
t.学历类型,
|
||||
t.用工性质名称,
|
||||
t.合同种类,
|
||||
t.合同类型,
|
||||
t.合同性质,
|
||||
t.合同签订次数,
|
||||
t.合同生效日期,
|
||||
t.合同到期日期,
|
||||
t.人员属性,
|
||||
t.保代员工号,
|
||||
t.职场属性,
|
||||
t.办公性质,
|
||||
t.保代人员属性,
|
||||
t.人员状态
|
||||
from telsaler t
|
||||
where t.人员姓名 = #{telsaler} or t.人员工号 = #{telsaler}
|
||||
</select>
|
||||
<resultMap id="TWrTelsaler" type="TWrTelsalerRecord">
|
||||
<result column="人员姓名" property="人员姓名" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="人员工号" property="人员工号" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="籍贯" property="籍贯" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="参加工作时间" property="参加工作时间" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="入职日期" property="入职日期" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="入司日期" property="入司日期" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="业务类型" property="业务类型" jdbcType="VARCHAR" javaType="String" />
|
||||
<result column="办公地省" property="办公地省" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="办公地市" property="办公地市" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
<result column="" property="" jdbcType="VARCHAR" javaType="String"/>
|
||||
</resultMap>
|
||||
|
||||
<!-- insertTWrTelsalerRecordToDB -->
|
||||
<insert id="insertTWrTelsalerRecordToDB">
|
||||
</insert>
|
||||
</mapper>
|
Loading…
x
Reference in New Issue
Block a user