Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
one-certificate-system
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
one-certificate-system
Commits
e7c20c05
Commit
e7c20c05
authored
Jul 28, 2024
by
廖旭伟
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
8e07e395
f106a3ca
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1176 additions
and
143 deletions
+1176
-143
one-certificate-manager/src/main/java/com/mortals/xhx/base/framework/interceptor/AuthTokenServiceImpl.java
.../xhx/base/framework/interceptor/AuthTokenServiceImpl.java
+0
-9
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntity.java
...va/com/mortals/xhx/base/system/user/model/UserEntity.java
+46
-6
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntityExt.java
...com/mortals/xhx/base/system/user/model/UserEntityExt.java
+44
-0
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserQuery.java
...ava/com/mortals/xhx/base/system/user/model/UserQuery.java
+596
-19
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/vo/UserVo.java
...ava/com/mortals/xhx/base/system/user/model/vo/UserVo.java
+5
-1
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/model/CertificateCatalogEntity.java
...hx/module/certificate/model/CertificateCatalogEntity.java
+13
-0
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/model/CertificateCatalogQuery.java
...xhx/module/certificate/model/CertificateCatalogQuery.java
+1
-0
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/service/impl/CertificateCatalogServiceImpl.java
...rtificate/service/impl/CertificateCatalogServiceImpl.java
+86
-22
one-certificate-manager/src/main/resources/sqlmap/base/system/user.xml
...te-manager/src/main/resources/sqlmap/base/system/user.xml
+385
-86
No files found.
one-certificate-manager/src/main/java/com/mortals/xhx/base/framework/interceptor/AuthTokenServiceImpl.java
View file @
e7c20c05
...
@@ -58,12 +58,7 @@ public class AuthTokenServiceImpl implements IAuthTokenService {
...
@@ -58,12 +58,7 @@ public class AuthTokenServiceImpl implements IAuthTokenService {
// 令牌前缀
// 令牌前缀
@Value
(
"${token.prefix:}"
)
@Value
(
"${token.prefix:}"
)
private
String
tokenPrefix
;
private
String
tokenPrefix
;
// redis db
@Value
(
"${spring.redis.database:}"
)
private
Integer
db
;
@Value
(
"${token.database:0}"
)
private
Integer
portalDb
;
protected
static
final
Long
SECOND
=
1
l
;
protected
static
final
Long
SECOND
=
1
l
;
...
@@ -104,11 +99,7 @@ public class AuthTokenServiceImpl implements IAuthTokenService {
...
@@ -104,11 +99,7 @@ public class AuthTokenServiceImpl implements IAuthTokenService {
Claims
claims
=
parseToken
(
token
);
Claims
claims
=
parseToken
(
token
);
String
uuid
=
(
String
)
claims
.
get
(
SysConstains
.
LOGIN_USER_KEY
);
String
uuid
=
(
String
)
claims
.
get
(
SysConstains
.
LOGIN_USER_KEY
);
String
userKey
=
getTokenKey
(
uuid
);
String
userKey
=
getTokenKey
(
uuid
);
//cacheService.select(portalDb);
String
userStr
=
cacheService
.
get
(
userKey
);
String
userStr
=
cacheService
.
get
(
userKey
);
/* RedisTemplate<String, String> redisTemplate = cacheService.selectDbRedisTemplate(portalDb);
String userStr =redisTemplate.opsForValue().get(userKey);
*/
//刷新token时间
//刷新token时间
UserEntity
userEntity
=
JSONObject
.
parseObject
(
userStr
,
UserEntity
.
class
);
UserEntity
userEntity
=
JSONObject
.
parseObject
(
userStr
,
UserEntity
.
class
);
if
(!
ObjectUtils
.
isEmpty
(
userEntity
))
{
if
(!
ObjectUtils
.
isEmpty
(
userEntity
))
{
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntity.java
View file @
e7c20c05
package
com.mortals.xhx.base.system.user.model
;
package
com.mortals.xhx.base.system.user.model
;
import
com.mortals.framework.annotation.desensitization.MobileDesensitize
;
import
com.mortals.framework.ap.SysConstains
;
import
com.mortals.framework.ap.SysConstains
;
import
com.mortals.framework.service.IUser
;
import
com.mortals.framework.service.IUser
;
import
com.mortals.xhx.base.system.user.model.vo.UserVo
;
import
com.mortals.xhx.base.system.user.model.vo.UserVo
;
...
@@ -34,6 +35,7 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -34,6 +35,7 @@ public class UserEntity extends UserVo implements IUser {
/**
/**
* 用户手机号
* 用户手机号
*/
*/
@MobileDesensitize
private
String
mobile
;
private
String
mobile
;
/**
/**
* 用户联系电话
* 用户联系电话
...
@@ -48,9 +50,19 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -48,9 +50,19 @@ public class UserEntity extends UserVo implements IUser {
*/
*/
private
String
qq
;
private
String
qq
;
/**
/**
* 用户类型(0.系统用户,1.普通用户,2.工作人员)
* 用户类型(0.系统用户,1.普通用户,2.工作人员
,3.巡查人员,4.窗口负责人
)
*/
*/
private
Integer
userType
;
private
Integer
userType
;
/**
* 用户所属部门id
*/
private
Long
deptId
;
/**
* 所属部门名称
*/
private
String
deptName
;
/**
/**
* 所属站点id,多个逗号分隔
* 所属站点id,多个逗号分隔
*/
*/
...
@@ -76,7 +88,23 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -76,7 +88,23 @@ public class UserEntity extends UserVo implements IUser {
*/
*/
private
String
lastLoginAddress
;
private
String
lastLoginAddress
;
/**
* 员工id
*/
private
Long
customerId
;
/**
* 钉钉userId
*/
private
String
dingUserId
;
public
String
getDingUserId
()
{
return
dingUserId
;
}
public
void
setDingUserId
(
String
dingUserId
)
{
this
.
dingUserId
=
dingUserId
;
}
public
UserEntity
(){}
public
UserEntity
(){}
/**
/**
...
@@ -100,6 +128,15 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -100,6 +128,15 @@ public class UserEntity extends UserVo implements IUser {
public
String
getLoginPwd
(){
public
String
getLoginPwd
(){
return
loginPwd
;
return
loginPwd
;
}
}
public
void
setDeptId
(
Long
deptId
)
{
this
.
deptId
=
deptId
;
}
public
void
setDeptName
(
String
deptName
)
{
this
.
deptName
=
deptName
;
}
/**
/**
* 设置 登录密码,使用md5双次加密
* 设置 登录密码,使用md5双次加密
* @param loginPwd
* @param loginPwd
...
@@ -132,6 +169,7 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -132,6 +169,7 @@ public class UserEntity extends UserVo implements IUser {
@Override
@Override
public
boolean
isAdmin
()
{
public
boolean
isAdmin
()
{
return
super
.
getId
()
==
null
?
false
:
super
.
getId
().
longValue
()
==
SysConstains
.
ADMIN_ID
;
return
super
.
getId
()
==
null
?
false
:
super
.
getId
().
longValue
()
==
SysConstains
.
ADMIN_ID
;
// return true;
}
}
@Override
@Override
...
@@ -208,7 +246,7 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -208,7 +246,7 @@ public class UserEntity extends UserVo implements IUser {
this
.
qq
=
qq
;
this
.
qq
=
qq
;
}
}
/**
/**
* 获取 用户类型(0.系统用户,1.普通用户,2.工作人员)
* 获取 用户类型(0.系统用户,1.普通用户,2.工作人员
,3.普通员工
)
* @return Integer
* @return Integer
*/
*/
public
Integer
getUserType
(){
public
Integer
getUserType
(){
...
@@ -224,17 +262,17 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -224,17 +262,17 @@ public class UserEntity extends UserVo implements IUser {
@Override
@Override
public
Long
getDeptId
()
{
public
Long
getDeptId
()
{
return
null
;
return
this
.
deptId
;
}
}
@Override
@Override
public
String
getDeptName
()
{
public
String
getDeptName
()
{
return
null
;
return
this
.
deptName
;
}
}
@Override
@Override
public
Long
getCustomerId
()
{
public
Long
getCustomerId
()
{
return
null
;
return
this
.
customerId
;
}
}
@Override
@Override
...
@@ -339,7 +377,9 @@ public class UserEntity extends UserVo implements IUser {
...
@@ -339,7 +377,9 @@ public class UserEntity extends UserVo implements IUser {
}
}
public
void
setCustomerId
(
Long
customerId
)
{
this
.
customerId
=
customerId
;
}
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntityExt.java
0 → 100644
View file @
e7c20c05
package
com.mortals.xhx.base.system.user.model
;
import
com.mortals.framework.model.BaseEntityLong
;
import
lombok.Data
;
/**
* Description:User
* date: 2021-9-26 16:11:48
*/
@Data
public
class
UserEntityExt
extends
BaseEntityLong
{
/**
* 站点名称
*/
private
String
siteName
;
private
String
roleIds
;
/**
* 唯一标识
*/
private
String
token
;
/**
* 菜单栏
*/
private
String
menuUrl
;
/**
* 登录时间
*/
private
Long
loginTime
;
/**
* 过期时间
*/
private
Long
expireTime
;
private
Long
deptId
;
private
String
deptName
;
}
\ No newline at end of file
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserQuery.java
View file @
e7c20c05
This diff is collapsed.
Click to expand it.
one-certificate-manager/src/main/java/com/mortals/xhx/base/system/user/model/vo/UserVo.java
View file @
e7c20c05
...
@@ -4,6 +4,8 @@ package com.mortals.xhx.base.system.user.model.vo;
...
@@ -4,6 +4,8 @@ package com.mortals.xhx.base.system.user.model.vo;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
lombok.Data
;
import
lombok.Data
;
import
java.util.List
;
/**
/**
* 用户信息业务视图对象
* 用户信息业务视图对象
*
*
...
@@ -17,7 +19,7 @@ public class UserVo extends BaseEntityLong {
...
@@ -17,7 +19,7 @@ public class UserVo extends BaseEntityLong {
*/
*/
private
String
siteName
;
private
String
siteName
;
private
String
roleIds
;
private
List
<
Long
>
roleIds
;
/**
/**
* 唯一标识
* 唯一标识
*/
*/
...
@@ -36,4 +38,6 @@ public class UserVo extends BaseEntityLong {
...
@@ -36,4 +38,6 @@ public class UserVo extends BaseEntityLong {
* 过期时间
* 过期时间
*/
*/
private
Long
expireTime
;
private
Long
expireTime
;
String
roleIdStrs
;
}
}
\ No newline at end of file
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/model/CertificateCatalogEntity.java
View file @
e7c20c05
package
com.mortals.xhx.module.certificate.model
;
package
com.mortals.xhx.module.certificate.model
;
import
java.util.List
;
import
java.util.List
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
cn.hutool.core.date.DateUtil
;
import
cn.hutool.core.date.DateUtil
;
...
@@ -8,6 +9,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
...
@@ -8,6 +9,7 @@ import com.fasterxml.jackson.annotation.JsonFormat;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.module.certificate.model.vo.CertificateCatalogVo
;
import
com.mortals.xhx.module.certificate.model.vo.CertificateCatalogVo
;
import
com.mortals.xhx.module.certificate.model.CertificateChildEntity
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
* 证照目录实体对象
* 证照目录实体对象
...
@@ -99,6 +101,17 @@ public class CertificateCatalogEntity extends CertificateCatalogVo {
...
@@ -99,6 +101,17 @@ public class CertificateCatalogEntity extends CertificateCatalogVo {
* 打印机纸盒
* 打印机纸盒
*/
*/
private
String
paperSource
;
private
String
paperSource
;
/**
* 目录子证信息
*/
private
List
<
CertificateChildEntity
>
certificateChildList
=
new
ArrayList
<>();;
public
List
<
CertificateChildEntity
>
getCertificateChildList
(){
return
certificateChildList
;
}
public
void
setCertificateChildList
(
List
<
CertificateChildEntity
>
certificateChildList
){
this
.
certificateChildList
=
certificateChildList
;
}
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
this
.
getId
().
hashCode
();
return
this
.
getId
().
hashCode
();
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/model/CertificateCatalogQuery.java
View file @
e7c20c05
package
com.mortals.xhx.module.certificate.model
;
package
com.mortals.xhx.module.certificate.model
;
import
java.util.List
;
import
java.util.List
;
import
java.util.List
;
import
com.mortals.xhx.module.certificate.model.CertificateCatalogEntity
;
import
com.mortals.xhx.module.certificate.model.CertificateCatalogEntity
;
/**
/**
...
...
one-certificate-manager/src/main/java/com/mortals/xhx/module/certificate/service/impl/CertificateCatalogServiceImpl.java
View file @
e7c20c05
...
@@ -8,24 +8,32 @@ import com.mortals.xhx.common.code.ClassifyType;
...
@@ -8,24 +8,32 @@ import com.mortals.xhx.common.code.ClassifyType;
import
com.mortals.xhx.common.utils.StringUtils
;
import
com.mortals.xhx.common.utils.StringUtils
;
import
com.mortals.xhx.module.certificate.dao.CertificateCatalogDao
;
import
com.mortals.xhx.module.certificate.dao.CertificateCatalogDao
;
import
com.mortals.xhx.module.certificate.model.CertificateCatalogEntity
;
import
com.mortals.xhx.module.certificate.model.CertificateCatalogEntity
;
import
com.mortals.xhx.module.certificate.model.CertificateChildEntity
;
import
com.mortals.xhx.module.certificate.model.CertificateChildQuery
;
import
com.mortals.xhx.module.certificate.model.CertificateClassifyEntity
;
import
com.mortals.xhx.module.certificate.model.CertificateClassifyEntity
;
import
com.mortals.xhx.module.certificate.service.CertificateCatalogService
;
import
com.mortals.xhx.module.certificate.service.CertificateCatalogService
;
import
com.mortals.xhx.module.certificate.service.CertificateChildService
;
import
com.mortals.xhx.module.certificate.service.CertificateClassifyService
;
import
com.mortals.xhx.module.certificate.service.CertificateClassifyService
;
import
org.apache.commons.collections4.CollectionUtils
;
import
org.apache.commons.collections4.CollectionUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.ObjectUtils
;
import
java.util.Arrays
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.stream.Collectors
;
/**
/**
* CertificateCatalogService
* CertificateCatalogService
* 证照目录 service实现
* 证照目录 service实现
*
*
* @author zxfei
* @author zxfei
* @date 2022-10-14
* @date 2022-10-14
*/
*/
@Service
(
"certificateCatalogService"
)
@Service
(
"certificateCatalogService"
)
public
class
CertificateCatalogServiceImpl
extends
AbstractCRUDServiceImpl
<
CertificateCatalogDao
,
CertificateCatalogEntity
,
Long
>
implements
CertificateCatalogService
{
public
class
CertificateCatalogServiceImpl
extends
AbstractCRUDServiceImpl
<
CertificateCatalogDao
,
CertificateCatalogEntity
,
Long
>
implements
CertificateCatalogService
{
...
@@ -41,21 +49,25 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
...
@@ -41,21 +49,25 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
@Autowired
@Autowired
private
CertificateClassifyService
certificateClassifyService
;
private
CertificateClassifyService
certificateClassifyService
;
@Autowired
private
CertificateChildService
certificateChildService
;
@Override
@Override
protected
void
saveBefore
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
protected
void
saveBefore
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogName
()))
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogName
()))
{
throw
new
AppException
(
"目录名称不能为空"
);
throw
new
AppException
(
"目录名称不能为空"
);
}
}
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogCode
()))
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogCode
()))
{
throw
new
AppException
(
"目录编码不能为空"
);
throw
new
AppException
(
"目录编码不能为空"
);
}
}
if
(
entity
.
getHolderType
()==
null
)
{
if
(
entity
.
getHolderType
()
==
null
)
{
throw
new
AppException
(
"持有者类型不能为空"
);
throw
new
AppException
(
"持有者类型不能为空"
);
}
}
if
(
entity
.
getClassifyId
()==
null
)
{
if
(
entity
.
getClassifyId
()
==
null
)
{
throw
new
AppException
(
"目录分类不能为空"
);
throw
new
AppException
(
"目录分类不能为空"
);
}
}
if
(
entity
.
getIndustryId
()==
null
)
{
if
(
entity
.
getIndustryId
()
==
null
)
{
throw
new
AppException
(
"所属行业不能为空"
);
throw
new
AppException
(
"所属行业不能为空"
);
}
}
...
@@ -63,19 +75,19 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
...
@@ -63,19 +75,19 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
@Override
@Override
protected
void
updateBefore
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
protected
void
updateBefore
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogName
()))
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogName
()))
{
throw
new
AppException
(
"目录名称不能为空"
);
throw
new
AppException
(
"目录名称不能为空"
);
}
}
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogCode
()))
{
if
(
StringUtils
.
isEmpty
(
entity
.
getCatalogCode
()))
{
throw
new
AppException
(
"目录编码不能为空"
);
throw
new
AppException
(
"目录编码不能为空"
);
}
}
if
(
entity
.
getHolderType
()==
null
)
{
if
(
entity
.
getHolderType
()
==
null
)
{
throw
new
AppException
(
"持有者类型不能为空"
);
throw
new
AppException
(
"持有者类型不能为空"
);
}
}
if
(
entity
.
getClassifyId
()==
null
)
{
if
(
entity
.
getClassifyId
()
==
null
)
{
throw
new
AppException
(
"目录分类不能为空"
);
throw
new
AppException
(
"目录分类不能为空"
);
}
}
if
(
entity
.
getIndustryId
()==
null
)
{
if
(
entity
.
getIndustryId
()
==
null
)
{
throw
new
AppException
(
"所属行业不能为空"
);
throw
new
AppException
(
"所属行业不能为空"
);
}
}
...
@@ -84,7 +96,7 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
...
@@ -84,7 +96,7 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
@Override
@Override
protected
CertificateCatalogEntity
findBefore
(
CertificateCatalogEntity
params
,
PageInfo
pageInfo
,
Context
context
)
throws
AppException
{
protected
CertificateCatalogEntity
findBefore
(
CertificateCatalogEntity
params
,
PageInfo
pageInfo
,
Context
context
)
throws
AppException
{
if
(
StringUtils
.
isNotEmpty
(
params
.
getCatalogName
()))
{
if
(
StringUtils
.
isNotEmpty
(
params
.
getCatalogName
()))
{
params
.
setCatalogName
(
"%"
.
concat
(
params
.
getCatalogName
()).
concat
(
"%"
));
params
.
setCatalogName
(
"%"
.
concat
(
params
.
getCatalogName
()).
concat
(
"%"
));
}
}
return
params
;
return
params
;
...
@@ -92,20 +104,72 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
...
@@ -92,20 +104,72 @@ public class CertificateCatalogServiceImpl extends AbstractCRUDServiceImpl<Certi
@Override
@Override
protected
void
findAfter
(
CertificateCatalogEntity
params
,
PageInfo
pageInfo
,
Context
context
,
List
<
CertificateCatalogEntity
>
list
)
throws
AppException
{
protected
void
findAfter
(
CertificateCatalogEntity
params
,
PageInfo
pageInfo
,
Context
context
,
List
<
CertificateCatalogEntity
>
list
)
throws
AppException
{
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
for
(
CertificateCatalogEntity
entity:
list
)
{
for
(
CertificateCatalogEntity
entity
:
list
)
{
CertificateClassifyEntity
certificateClassifyEntity
=
certificateClassifyService
.
get
(
entity
.
getClassifyId
());
CertificateClassifyEntity
certificateClassifyEntity
=
certificateClassifyService
.
get
(
entity
.
getClassifyId
());
if
(
certificateClassifyEntity
!=
null
)
{
if
(
certificateClassifyEntity
!=
null
)
{
entity
.
setClassifyType
(
certificateClassifyEntity
.
getClassifyType
());
entity
.
setClassifyType
(
certificateClassifyEntity
.
getClassifyType
());
}
else
{
}
else
{
entity
.
setClassifyType
(
ClassifyType
.
PRINCIPAL
.
getValue
());
entity
.
setClassifyType
(
ClassifyType
.
PRINCIPAL
.
getValue
());
}
}
}
}
}
}
fillSubData
(
list
);
}
@Override
protected
void
findAfter
(
CertificateCatalogEntity
params
,
Context
context
,
List
<
CertificateCatalogEntity
>
list
)
throws
AppException
{
fillSubData
(
list
);
super
.
findAfter
(
params
,
context
,
list
);
}
private
void
fillSubData
(
List
<
CertificateCatalogEntity
>
list
)
{
List
<
Long
>
idList
=
list
.
stream
().
map
(
i
->
i
.
getId
()).
collect
(
Collectors
.
toList
());
CertificateChildQuery
certificateChildQuery
=
new
CertificateChildQuery
();
certificateChildQuery
.
setCatalogIdList
(
idList
);
Map
<
Long
,
List
<
CertificateChildEntity
>>
certificateChildListMap
=
certificateChildService
.
find
(
certificateChildQuery
).
stream
().
collect
(
Collectors
.
groupingBy
(
CertificateChildEntity:
:
getCatalogId
));
list
.
forEach
(
item
->
item
.
setCertificateChildList
(
certificateChildListMap
.
get
(
item
.
getId
())));
}
@Override
protected
void
saveAfter
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getCertificateChildList
()))
{
entity
.
getCertificateChildList
().
stream
().
peek
(
item
->
{
item
.
setCatalogId
(
entity
.
getId
());
item
.
setCreateUserId
(
this
.
getContextUserId
(
context
));
item
.
setCreateTime
(
new
Date
());
}).
count
();
certificateChildService
.
save
(
entity
.
getCertificateChildList
());
}
super
.
saveAfter
(
entity
,
context
);
}
@Override
protected
void
updateAfter
(
CertificateCatalogEntity
entity
,
Context
context
)
throws
AppException
{
if
(!
ObjectUtils
.
isEmpty
(
entity
.
getCertificateChildList
()))
{
Long
[]
certificateChildIds
=
certificateChildService
.
find
(
new
CertificateChildQuery
().
catalogId
(
entity
.
getId
())).
stream
().
map
(
CertificateChildEntity:
:
getId
).
toArray
(
Long
[]::
new
);
certificateChildService
.
remove
(
certificateChildIds
,
context
);
entity
.
getCertificateChildList
().
stream
().
peek
(
item
->
{
item
.
setCatalogId
(
entity
.
getId
());
item
.
setCreateUserId
(
this
.
getContextUserId
(
context
));
item
.
setCreateTime
(
new
Date
());
item
.
setUpdateUserId
(
this
.
getContextUserId
(
context
));
item
.
setUpdateTime
(
new
Date
());
}).
count
();
certificateChildService
.
save
(
entity
.
getCertificateChildList
());
}
super
.
updateAfter
(
entity
,
context
);
}
@Override
protected
void
removeAfter
(
Long
[]
ids
,
Context
context
,
int
result
)
throws
AppException
{
List
<
CertificateChildEntity
>
certificateChildlist
=
certificateChildService
.
find
(
new
CertificateChildQuery
().
catalogIdList
(
Arrays
.
asList
(
ids
)));
certificateChildService
.
removeList
(
certificateChildlist
,
context
);
super
.
removeAfter
(
ids
,
context
,
result
);
}
}
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
// String excelFilePath = "D:/mortals/app/data/cpm/" + "excel/test1.xls";
// String excelFilePath = "D:/mortals/app/data/cpm/" + "excel/test1.xls";
// List<String> excelList = new ArrayList<>();
// List<String> excelList = new ArrayList<>();
// excelList.add("i_1_姓名");
// excelList.add("i_1_姓名");
...
...
one-certificate-manager/src/main/resources/sqlmap/base/system/user.xml
View file @
e7c20c05
This diff is collapsed.
Click to expand it.
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