Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
d3ef7d54
Commit
d3ef7d54
authored
Feb 28, 2025
by
hongguangwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MVP1.7.7-获取需要校验的字段
parent
8be2bfe6
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
103 additions
and
8 deletions
+103
-8
TCompleteMonitorSetBaseInfo.java
.../v1/yifu/archives/entity/TCompleteMonitorSetBaseInfo.java
+8
-0
TMainExportAllVO.java
...yifu/cloud/plus/v1/yifu/archives/vo/TMainExportAllVO.java
+14
-0
TCompleteMonitorSetBaseInfoController.java
...ves/controller/TCompleteMonitorSetBaseInfoController.java
+13
-0
TCompleteMonitorSetBaseInfoMapper.java
...fu/archives/mapper/TCompleteMonitorSetBaseInfoMapper.java
+5
-0
TCompleteMonitorSetBaseInfoService.java
.../archives/service/TCompleteMonitorSetBaseInfoService.java
+2
-0
TCompleteMonitorServiceImpl.java
...fu/archives/service/impl/TCompleteMonitorServiceImpl.java
+7
-0
TCompleteMonitorSetBaseInfoServiceImpl.java
.../service/impl/TCompleteMonitorSetBaseInfoServiceImpl.java
+24
-0
application.yml
...ives/yifu-archives-biz/src/main/resources/application.yml
+1
-1
TCompleteMonitorMapper.xml
...-biz/src/main/resources/mapper/TCompleteMonitorMapper.xml
+1
-0
TCompleteMonitorSetBaseInfoMapper.xml
...in/resources/mapper/TCompleteMonitorSetBaseInfoMapper.xml
+21
-0
TCompleteMonitorSetMapper.xml
...z/src/main/resources/mapper/TCompleteMonitorSetMapper.xml
+5
-5
FileUploadServiceImpl.java
...us/v1/yifu/social/service/impl/FileUploadServiceImpl.java
+1
-1
TSocialFriendServiceImpl.java
...v1/yifu/social/service/impl/TSocialFriendServiceImpl.java
+1
-1
No files found.
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/entity/TCompleteMonitorSetBaseInfo.java
View file @
d3ef7d54
...
@@ -105,5 +105,13 @@ public class TCompleteMonitorSetBaseInfo {
...
@@ -105,5 +105,13 @@ public class TCompleteMonitorSetBaseInfo {
@ExcelProperty
(
"表名称"
)
@ExcelProperty
(
"表名称"
)
@Schema
(
description
=
"表名称"
)
@Schema
(
description
=
"表名称"
)
private
String
baseTable
;
private
String
baseTable
;
/**
* 属性字段
*/
@ExcelAttribute
(
name
=
"属性字段"
,
maxLength
=
100
)
@Length
(
max
=
100
,
message
=
"属性字段不能超过100个字符"
)
@ExcelProperty
(
"属性字段"
)
@Schema
(
description
=
"属性字段"
)
private
String
baseField
;
}
}
yifu-archives/yifu-archives-api/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/vo/TMainExportAllVO.java
View file @
d3ef7d54
...
@@ -185,5 +185,19 @@ public class TMainExportAllVO {
...
@@ -185,5 +185,19 @@ public class TMainExportAllVO {
@ExcelAttribute
(
needExport
=
true
,
name
=
"不良记录描述"
)
@ExcelAttribute
(
needExport
=
true
,
name
=
"不良记录描述"
)
private
String
field63
;
private
String
field63
;
// 2025-2-27 17:07:09新增
@ExcelAttribute
(
needExport
=
true
,
name
=
"银行卡号"
)
private
String
field73
;
@ExcelAttribute
(
needExport
=
true
,
name
=
"开户总行"
)
private
String
field74
;
@ExcelAttribute
(
needExport
=
true
,
name
=
"开户省"
)
private
String
field75
;
@ExcelAttribute
(
needExport
=
true
,
name
=
"开户市"
)
private
String
field76
;
@ExcelAttribute
(
needExport
=
true
,
name
=
"开户支行"
)
private
String
field77
;
@ExcelAttribute
(
needExport
=
true
,
name
=
"计税月份"
)
private
String
field78
;
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/controller/TCompleteMonitorSetBaseInfoController.java
View file @
d3ef7d54
...
@@ -58,4 +58,17 @@ public class TCompleteMonitorSetBaseInfoController {
...
@@ -58,4 +58,17 @@ public class TCompleteMonitorSetBaseInfoController {
return
R
.
ok
(
tCompleteMonitorSetBaseInfoService
.
getListByBaseType
(
baseType
));
return
R
.
ok
(
tCompleteMonitorSetBaseInfoService
.
getListByBaseType
(
baseType
));
}
}
/**
* @param typeName 员工合同名称
* @Description: 根据员工合同名称,获取需要完整的字段
* @Author: hgw
* @Date: 2025/2/27 11:49
* @return: com.yifu.cloud.plus.v1.yifu.common.core.util.R<java.util.List < com.yifu.cloud.plus.v1.yifu.archives.entity.TCompleteMonitorSetBaseInfo>>
**/
@Operation
(
summary
=
"根据员工合同名称,获取需要完整的字段"
,
description
=
"根据员工合同名称,获取需要完整的字段"
)
@GetMapping
(
"/getBaseFieldByTypeName"
)
public
R
<
List
<
String
>>
getBaseFieldByTypeName
(
@RequestParam
String
typeName
)
{
return
R
.
ok
(
tCompleteMonitorSetBaseInfoService
.
getBaseFieldByTypeName
(
typeName
));
}
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/mapper/TCompleteMonitorSetBaseInfoMapper.java
View file @
d3ef7d54
...
@@ -41,4 +41,9 @@ public interface TCompleteMonitorSetBaseInfoMapper extends BaseMapper<TCompleteM
...
@@ -41,4 +41,9 @@ public interface TCompleteMonitorSetBaseInfoMapper extends BaseMapper<TCompleteM
**/
**/
List
<
TCompleteMonitorSetBaseInfo
>
getBaseInfoByIds
(
@Param
(
"ids"
)
String
ids
);
List
<
TCompleteMonitorSetBaseInfo
>
getBaseInfoByIds
(
@Param
(
"ids"
)
String
ids
);
// 获取类型需要完整的字段名
List
<
String
>
getIdByType
(
@Param
(
"typeName"
)
String
typeName
);
List
<
String
>
getIdByOne
();
List
<
String
>
getBaseFieldByIdList
(
@Param
(
"idList"
)
List
<
String
>
idList
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/TCompleteMonitorSetBaseInfoService.java
View file @
d3ef7d54
...
@@ -31,4 +31,6 @@ import java.util.List;
...
@@ -31,4 +31,6 @@ import java.util.List;
public
interface
TCompleteMonitorSetBaseInfoService
extends
IService
<
TCompleteMonitorSetBaseInfo
>
{
public
interface
TCompleteMonitorSetBaseInfoService
extends
IService
<
TCompleteMonitorSetBaseInfo
>
{
List
<
TCompleteMonitorSetBaseInfo
>
getListByBaseType
(
String
baseType
);
List
<
TCompleteMonitorSetBaseInfo
>
getListByBaseType
(
String
baseType
);
List
<
String
>
getBaseFieldByTypeName
(
String
typeName
);
}
}
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TCompleteMonitorServiceImpl.java
View file @
d3ef7d54
...
@@ -539,6 +539,13 @@ public class TCompleteMonitorServiceImpl extends ServiceImpl<TCompleteMonitorMap
...
@@ -539,6 +539,13 @@ public class TCompleteMonitorServiceImpl extends ServiceImpl<TCompleteMonitorMap
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"是否从事过井下、高空、高温、特别繁重体力劳动以及有毒有害工种"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"是否从事过井下、高空、高温、特别繁重体力劳动以及有毒有害工种"
}));
oneTitle
=
"不良记录"
;
oneTitle
=
"不良记录"
;
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"不良记录描述"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"不良记录描述"
}));
oneTitle
=
"银行卡信息"
;
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"银行卡号"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"开户总行"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"开户省"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"开户市"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"开户支行"
}));
headList
.
add
(
this
.
getNewArrayList
(
new
String
[]{
oneTitle
,
"计税月份"
}));
Set
<
String
>
titleContent
=
getExportFieldNameDetailByClass
(
TMainExportAllVO
.
class
);
Set
<
String
>
titleContent
=
getExportFieldNameDetailByClass
(
TMainExportAllVO
.
class
);
//ExcelUtil<TMainExportAllVO> util = new ExcelUtil<>(TMainExportAllVO.class)
//ExcelUtil<TMainExportAllVO> util = new ExcelUtil<>(TMainExportAllVO.class)
...
...
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/service/impl/TCompleteMonitorSetBaseInfoServiceImpl.java
View file @
d3ef7d54
...
@@ -26,6 +26,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
...
@@ -26,6 +26,7 @@ import com.yifu.cloud.plus.v1.yifu.common.core.util.Common;
import
lombok.extern.log4j.Log4j2
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
/**
/**
...
@@ -48,4 +49,27 @@ public class TCompleteMonitorSetBaseInfoServiceImpl extends ServiceImpl<TComplet
...
@@ -48,4 +49,27 @@ public class TCompleteMonitorSetBaseInfoServiceImpl extends ServiceImpl<TComplet
return
baseMapper
.
selectList
(
wrapper
);
return
baseMapper
.
selectList
(
wrapper
);
}
}
/**
* @param typeName 类型名称
* @Description:
* @Author: hgw
* @Date: 2025/2/27 21:19
* @return: java.util.List<java.lang.String>
**/
@Override
public
List
<
String
>
getBaseFieldByTypeName
(
String
typeName
)
{
List
<
String
>
idList
=
baseMapper
.
getIdByType
(
typeName
);
// 取默认配置
if
(
idList
==
null
||
idList
.
isEmpty
()
||
"-1"
.
equals
(
typeName
))
{
idList
=
baseMapper
.
getIdByOne
();
}
if
(
idList
==
null
||
idList
.
isEmpty
())
{
// -1表示不可以
List
<
String
>
stringList
=
new
ArrayList
<>();
stringList
.
add
(
"-1"
);
return
stringList
;
}
return
baseMapper
.
getBaseFieldByIdList
(
idList
);
}
}
}
yifu-archives/yifu-archives-biz/src/main/resources/application.yml
View file @
d3ef7d54
...
@@ -26,7 +26,7 @@ mybatis-plus:
...
@@ -26,7 +26,7 @@ mybatis-plus:
logic-not-delete-value
:
0
logic-not-delete-value
:
0
configuration
:
configuration
:
map-underscore-to-camel-case
:
true
map-underscore-to-camel-case
:
true
#
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
log-impl
:
org.apache.ibatis.logging.stdout.StdOutImpl
# spring security 配置
# spring security 配置
security
:
security
:
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TCompleteMonitorMapper.xml
View file @
d3ef7d54
...
@@ -361,6 +361,7 @@
...
@@ -361,6 +361,7 @@
,e.HIGN_EDUCATION field40
,e.HIGN_EDUCATION field40
,if(e.FIRST_WORK_FLAG is null,'',if(e.FIRST_WORK_FLAG=0,'是','否')) field43
,if(e.FIRST_WORK_FLAG is null,'',if(e.FIRST_WORK_FLAG=0,'是','否')) field43
,if(e.HAVE_QUALIFICATION is null,'',if(e.HAVE_QUALIFICATION=0,'是','否')) field51
,if(e.HAVE_QUALIFICATION is null,'',if(e.HAVE_QUALIFICATION=0,'是','否')) field51
,e.BANK_NO field73,e.BANK_NAME field74,e.BANK_PROVINCE field75,e.BANK_CITY field76,e.BANK_SUB_NAME field77,e.TAX_MONTH field78
FROM t_complete_monitor a
FROM t_complete_monitor a
left join t_employee_project p on a.DEPT_NO=p.DEPT_NO
left join t_employee_project p on a.DEPT_NO=p.DEPT_NO
left join t_employee_info e on p.EMP_ID=e.id
left join t_employee_info e on p.EMP_ID=e.id
...
...
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TCompleteMonitorSetBaseInfoMapper.xml
View file @
d3ef7d54
...
@@ -32,6 +32,7 @@
...
@@ -32,6 +32,7 @@
<result
property=
"isMonitor"
column=
"IS_MONITOR"
/>
<result
property=
"isMonitor"
column=
"IS_MONITOR"
/>
<result
property=
"baseColumn"
column=
"BASE_COLUMN"
/>
<result
property=
"baseColumn"
column=
"BASE_COLUMN"
/>
<result
property=
"baseTable"
column=
"BASE_TABLE"
/>
<result
property=
"baseTable"
column=
"BASE_TABLE"
/>
<result
property=
"baseField"
column=
"BASE_FIELD"
/>
</resultMap>
</resultMap>
<!--获取ids对应的所有的配置字段-->
<!--获取ids对应的所有的配置字段-->
...
@@ -41,4 +42,24 @@
...
@@ -41,4 +42,24 @@
where a.id in (${ids})
where a.id in (${ids})
GROUP BY a.BASE_TABLE
GROUP BY a.BASE_TABLE
</select>
</select>
<!-- 获取属性字段 -->
<select
id=
"getIdByType"
resultType=
"java.lang.String"
>
select s.BASE_ID from t_complete_monitor_set s where s.CONTRACT_TYPE_NAME like concat('%', #{typeName},'%')
</select>
<!-- 获取属性字段 -->
<select
id=
"getIdByOne"
resultType=
"java.lang.String"
>
select s.BASE_ID from t_complete_monitor_set s where s.id = '1'
</select>
<!-- 获取属性字段 -->
<select
id=
"getBaseFieldByIdList"
resultType=
"java.lang.String"
>
SELECT BASE_FIELD
FROM t_complete_monitor_set_base_info a
where a.id in
<foreach
item=
"idStr"
index=
"index"
collection=
"idList"
open=
"("
separator=
","
close=
")"
>
#{idStr}
</foreach>
</select>
</mapper>
</mapper>
yifu-archives/yifu-archives-biz/src/main/resources/mapper/TCompleteMonitorSetMapper.xml
View file @
d3ef7d54
...
@@ -60,11 +60,11 @@
...
@@ -60,11 +60,11 @@
<if
test=
"tCompleteMonitorSet.contractType != null and tCompleteMonitorSet.contractType.trim() != ''"
>
<if
test=
"tCompleteMonitorSet.contractType != null and tCompleteMonitorSet.contractType.trim() != ''"
>
AND a.CONTRACT_TYPE = #{tCompleteMonitorSet.contractType}
AND a.CONTRACT_TYPE = #{tCompleteMonitorSet.contractType}
</if>
</if>
<if
test=
"t
EmployeeProject.contractTypeArray != null and tEmployeeProjec
t.contractTypeArray.length > 0"
>
<if
test=
"t
CompleteMonitorSet.contractTypeArray != null and tCompleteMonitorSe
t.contractTypeArray.length > 0"
>
AND
a.CONTRACT_TYPE in
AND
<foreach
item=
"idStr"
index=
"index"
collection=
"t
EmployeeProjec
t.contractTypeArray"
open=
"("
<foreach
item=
"idStr"
index=
"index"
collection=
"t
CompleteMonitorSe
t.contractTypeArray"
open=
"("
separator=
"
,
"
close=
")"
>
separator=
"
or
"
close=
")"
>
#{idStr}
a.CONTRACT_TYPE_NAME like concat('%',#{idStr},'%')
</foreach>
</foreach>
</if>
</if>
<if
test=
"tCompleteMonitorSet.baseId != null and tCompleteMonitorSet.baseId.trim() != ''"
>
<if
test=
"tCompleteMonitorSet.baseId != null and tCompleteMonitorSet.baseId.trim() != ''"
>
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/FileUploadServiceImpl.java
View file @
d3ef7d54
...
@@ -85,7 +85,7 @@ public class FileUploadServiceImpl implements FileUploadService {
...
@@ -85,7 +85,7 @@ public class FileUploadServiceImpl implements FileUploadService {
true
,
true
,
"1"
,
authorities
,
"1"
,
"1"
,
authorities
,
"1"
,
null
,
null
,
null
,
null
,
null
);
null
,
null
);
attaInfo
.
setCreateBy
(
user
.
getId
());
attaInfo
.
setCreateBy
(
user
.
getId
());
attaInfo
.
setCreateName
(
user
.
getNickname
());
attaInfo
.
setCreateName
(
user
.
getNickname
());
attaInfo
=
tAttaInfoService
.
add
(
attaInfo
);
attaInfo
=
tAttaInfoService
.
add
(
attaInfo
);
...
...
yifu-social/yifu-social-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/social/service/impl/TSocialFriendServiceImpl.java
View file @
d3ef7d54
...
@@ -79,7 +79,7 @@ public class TSocialFriendServiceImpl extends ServiceImpl<TSocialFriendMapper, T
...
@@ -79,7 +79,7 @@ public class TSocialFriendServiceImpl extends ServiceImpl<TSocialFriendMapper, T
true
,
true
,
"1"
,
authorities
,
"1"
,
"1"
,
authorities
,
"1"
,
null
,
null
,
null
,
null
,
null
);
null
,
null
);
// 失败原因配置
// 失败原因配置
Map
<
String
,
FailReasonConfig
>
errorMap
=
failReasonConfigService
.
getFailReasonMap
();
Map
<
String
,
FailReasonConfig
>
errorMap
=
failReasonConfigService
.
getFailReasonMap
();
// 获取所有需要反馈的任务id
// 获取所有需要反馈的任务id
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment