TJkEmployeeinfoMapper.xml
3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?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.ruoyi.mapper.TJkEmployeeinfoMapper">
<resultMap id="BaseResultMap" type="com.ruoyi.domain.TJkEmployeeinfo">
<result property="emId" column="em_id" jdbcType="VARCHAR"/>
<result property="companyname" column="companyname" jdbcType="VARCHAR"/>
<result property="departmentname" column="departmentname" jdbcType="VARCHAR"/>
<result property="positname" column="positname" jdbcType="VARCHAR"/>
<result property="employeename" column="employeename" jdbcType="VARCHAR"/>
<result property="age" column="age" jdbcType="INTEGER"/>
<result property="status" column="status" jdbcType="VARCHAR"/>
<result property="unitfullname" column="unitfullname" jdbcType="VARCHAR"/>
<result property="code" column="code" jdbcType="VARCHAR"/>
<result property="inposittype" column="inposittype" jdbcType="VARCHAR"/>
<result property="idcardid" column="idcardid" jdbcType="VARCHAR"/>
<result property="sextype" column="sextype" jdbcType="VARCHAR"/>
<result property="nationname" column="nationname" jdbcType="VARCHAR"/>
<result property="nativeplace" column="nativeplace" jdbcType="VARCHAR"/>
<result property="birthday" column="birthday" jdbcType="DATE"/>
<result property="politicsstatus" column="politicsstatus" jdbcType="VARCHAR"/>
<result property="marridstatus" column="marridstatus" jdbcType="VARCHAR"/>
<result property="startwordtime" column="startwordtime" jdbcType="DATE"/>
<result property="telphone" column="telphone" jdbcType="VARCHAR"/>
<result property="mobile" column="mobile" jdbcType="VARCHAR"/>
<result property="hrmsUserfield3" column="hrms_userfield_3" jdbcType="VARCHAR"/>
<result property="hrmsUserfield47" column="hrms_userfield_47" jdbcType="VARCHAR"/>
<result property="hrmsUserfield40" column="hrms_userfield_40" jdbcType="VARCHAR"/>
<result property="hrmsUserfield45" column="hrms_userfield_45" jdbcType="VARCHAR"/>
<result property="hrmsUserfield41" column="hrms_userfield_41" jdbcType="VARCHAR"/>
<result property="fname" column="fname" jdbcType="VARCHAR"/>
<result property="enterdeptdate" column="enterdeptdate" jdbcType="DATE"/>
<result property="entergroupdate" column="entergroupdate" jdbcType="DATE"/>
<result property="inpositiondate" column="inpositiondate" jdbcType="DATE"/>
<result property="emptypecls" column="emptypecls" jdbcType="VARCHAR"/>
<result property="enterdate" column="enterdate" jdbcType="DATE"/>
<result property="contractdate" column="contractdate" jdbcType="DATE"/>
</resultMap>
<sql id="Base_Column_List">
em_id,companyname,departmentname,
positname,employeename,age,
status,unitfullname,code,
inposittype,idcardid,sextype,
nationname,nativeplace,birthday,
politicsstatus,marridstatus,startwordtime,
telphone,mobile,hrms_userfield_3,
hrms_userfield_47,hrms_userfield_40,hrms_userfield_45,
hrms_userfield_41,fname,enterdeptdate,
entergroupdate,inpositiondate,emptypecls,
enterdate,contractdate
</sql>
</mapper>