You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
weaver-hrm-organization/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.xml

170 lines
6.0 KiB
XML

3 years ago
<?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.engine.organization.mapper.hrmresource.SystemDataMapper">
3 years ago
<resultMap id="CustomFieldMap" type="com.engine.organization.entity.jclimport.po.CusFormFieldPO">
<result column="fieldlable" property="fieldLabel"/>
<result column="fieldid" property="fieldId"/>
<result column="fieldname" property="fieldName"/>
<result column="ismand" property="required"/>
<result column="fieldhtmltype" property="fieldHtmlType"/>
<result column="type" property="type"/>
<result column="dmlurl" property="dmlUrl"/>
3 years ago
<result column="scopeid" property="scopeId"/>
3 years ago
<result column="tablename" property="tableName"/>
</resultMap>
<resultMap id="SelectItemMap" type="com.engine.organization.entity.jclimport.po.JclSelectItem">
<result column="fieldid" property="fieldId"/>
<result column="selectvalue" property="selectValue"/>
<result column="selectname" property="selectName"/>
</resultMap>
3 years ago
<resultMap id="RecordMap" type="com.engine.organization.entity.commom.RecordInfo">
<result column="uuid" property="uuid"/>
<result column="id" property="id"/>
<result column="canceled" property="canceled"/>
</resultMap>
3 years ago
<update id="updateResourceJobTitleByIds">
update hrmresource set JOBTITLE = #{jobTitle} where id in
<foreach collection="ids" open="(" item="id" separator="," close=")">
#{id}
</foreach>
</update>
3 years ago
<select id="getScCompanyNameById" resultType="java.lang.String">
select subcompanyname
from hrmsubcompany
where id = #{companyId}
</select>
<select id="getBrowserDatas" resultType="java.util.Map">
select
subcompanyname as "name",
id as "id"
from hrmsubcompany
where id in
<foreach collection="ids" open="(" item="id" separator="," close=")">
#{id}
</foreach>
</select>
<select id="getScDepartmentNameById" resultType="java.lang.String">
select departmentname
from hrmdepartment
where id = #{departmentId}
</select>
<select id="getScHrmResourceNameById" resultType="java.lang.String">
select lastname
from hrmresource
where id = #{managerId}
</select>
3 years ago
<select id="getHrmObjectByID" resultMap="RecordMap">
select *
3 years ago
from ${tableName}
where id = #{id}
</select>
3 years ago
<select id="getHrmObjectByUUID" resultMap="RecordMap">
select *
3 years ago
from ${tableName}
where uuid = #{uuid}
</select>
3 years ago
<select id="getHrmJobTitleByName" resultMap="RecordMap">
select *
from hrmjobtitles
where jobtitlename = #{name}
order by created desc limit 1
</select>
<select id="getHrmJobTitleByName" resultMap="RecordMap" databaseId="sqlserver">
select top 1 *
from hrmjobtitles
where jobtitlename = #{name}
order by created desc
</select>
<select id="getHrmJobTitleByName" resultMap="RecordMap" databaseId="oracle">
select *
from hrmjobtitles
where jobtitlename = #{name}
and rownum &lt; 2
order by created desc
</select>
<select id="getHrmResourceIds" resultType="java.lang.Long">
select id
from hrmresource
where departmentid = #{departmentId}
And jobTitle = #{jobTitle}
</select>
3 years ago
<select id="getHrmFieldBeanList" resultMap="CustomFieldMap">
select b.labelname as fieldlable,
3 years ago
'0' as scopeid,
3 years ago
a.fieldid,
a.fieldname,
a.ismand,
a.fieldhtmltype,
a.type,
'hrmresource' as tablename
from hrm_formfield a
inner join htmllabelinfo b on a.fieldlabel = b.indexid and b.languageid = 7
where a.fielddbtype != '6'
order by groupid, fieldorder
</select>
<select id="getHrmCustomFieldList" resultMap="CustomFieldMap">
select b.labelname as fieldlable,
3 years ago
a.scopeid,
3 years ago
a.fieldid,
a.hrm_fieldlable as fieldname,
a.ismand,
c.fieldhtmltype,
c.type,
a.dmlurl,
'cus_fielddata' as tablename
from cus_formfield a
inner join htmllabelinfo b on a.fieldlable = b.indexid and b.languageid = 7
inner join cus_formdict c on a.fieldid = c.id and c.fieldhtmltype != '6'
order by groupid, fieldorder
</select>
<select id="getSelectItems" resultMap="SelectItemMap">
select fieldid, selectvalue, selectname
from ${tableName} and fieldid = #{fieldId}
</select>
<select id="getHrmFieldBeanListByFields" resultMap="CustomFieldMap">
select b.labelname as fieldlable,
a.fieldid,
a.fieldname,
a.ismand,
a.fieldhtmltype,
a.type,
3 years ago
'0' as scopeid,
3 years ago
'hrmresource' as tablename
from hrm_formfield a
inner join htmllabelinfo b on a.fieldlabel = b.indexid and b.languageid = 7
where a.fielddbtype != '6' and a.isuse = '1'
3 years ago
and a.fieldname in
<foreach collection="fields" open="(" item="field" separator="," close=")">
#{field}
</foreach>
order by groupid ,fieldorder
</select>
3 years ago
<select id="getHrmResourceMaxId" resultType="java.lang.Long">
select max(id)
from hrmresource
</select>
<select id="getHrmResourceIdsByDept" resultType="java.lang.Long">
select id
from jcl_org_hrmresource
where department_id = #{departmentId}
</select>
<select id="getBatchUuidByIds" resultType="java.lang.String">
select uuid from ${tableName} where id in
<foreach collection="ecIds" open="(" item="ecId" separator="," close=")">
#{ecId}
</foreach>
</select>
3 years ago
3 years ago
</mapper>