From dd1992737693cf7133291d5ef1b5bda54bc56a59 Mon Sep 17 00:00:00 2001 From: dxfeng Date: Mon, 3 Jun 2024 15:43:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E8=AF=AD=E8=A8=80=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entity/hrmresource/vo/HrmResourceVO.java | 8 +-- .../mapper/hrmresource/SystemDataMapper.java | 14 ---- .../mapper/hrmresource/SystemDataMapper.xml | 51 -------------- .../mapper/resource/HrmResourceMapper.java | 4 +- .../mapper/resource/HrmResourceMapper.xml | 15 ++-- .../service/impl/ExportCommonServiceImpl.java | 3 +- .../service/impl/HrmResourceServiceImpl.java | 70 +------------------ 7 files changed, 14 insertions(+), 151 deletions(-) diff --git a/src/com/engine/organization/entity/hrmresource/vo/HrmResourceVO.java b/src/com/engine/organization/entity/hrmresource/vo/HrmResourceVO.java index fd95684e..3925f05c 100644 --- a/src/com/engine/organization/entity/hrmresource/vo/HrmResourceVO.java +++ b/src/com/engine/organization/entity/hrmresource/vo/HrmResourceVO.java @@ -51,21 +51,21 @@ public class HrmResourceVO { /** * 姓名 */ - @OrganizationTableColumn(text = "姓名", width = "25%", column = "lastname") + @OrganizationTableColumn(labelId = 547329, text = "姓名", width = "25%", column = "lastname") private String lastName; /** * 部门 */ - @OrganizationTableColumn(text = "部门", width = "25%", column = "departmentid", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getDepartmentName") + @OrganizationTableColumn(labelId = 547331, text = "部门", width = "25%", column = "departmentid", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getDepartmentName") private String departmentName; /** * 分部 */ - @OrganizationTableColumn(text = "分部", width = "25%", column = "subcompanyid1", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getCompanyName") + @OrganizationTableColumn(labelId = 547332, text = "分部", width = "25%", column = "subcompanyid1", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getCompanyName") private String companyName; - @OrganizationTableColumn(text = "岗位", width = "25%", column = "jobtitle", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getJobName") + @OrganizationTableColumn(labelId = 547333, text = "岗位", width = "25%", column = "jobtitle", transmethod = "com.engine.organization.transmethod.HrmResourceTransMethod.getJobName") private String jobName; /** diff --git a/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.java b/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.java index ca16794d..ff41f92b 100644 --- a/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.java +++ b/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.java @@ -3,7 +3,6 @@ package com.engine.organization.mapper.hrmresource; import com.engine.organization.entity.commom.RecordInfo; import com.engine.organization.entity.jclimport.po.CusFormFieldPO; -import com.engine.organization.entity.jclimport.po.JclSelectItem; import org.apache.ibatis.annotations.Param; import java.util.Collection; @@ -44,19 +43,6 @@ public interface SystemDataMapper { */ int updateResourceJobTitleByIds(@Param("jobTitle") String jobTitle, @Param("ids") Collection ids); - /** - * 人员,hrmResource表字段 - * - * @return - */ - List getHrmFieldBeanList(); - - List getHrmFieldBeanListByFields(@Param("fields") Collection fields); - - List getHrmCustomFieldList(); - - List getSelectItems(@Param("tableName") String tableName, @Param("fieldId") Long fieldId); - Long getHrmResourceMaxId(); List getBatchUuidByIds(@Param("tableName") String tableName, @Param("ecIds") List ecIds); diff --git a/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.xml b/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.xml index 496434fe..f26bb174 100644 --- a/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.xml +++ b/src/com/engine/organization/mapper/hrmresource/SystemDataMapper.xml @@ -100,57 +100,6 @@ where departmentid = #{departmentId} And jobTitle = #{jobTitle} - - - - - select a.fieldid, a.fieldname, b.labelname, a.issystem, a.ismand - from hrm_formfield a - inner join htmllabelinfo b on a.fieldlabel = b.indexid and b.languageid = 7 - +