Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
0da748cc
Commit
0da748cc
authored
Jun 30, 2025
by
韩桐桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
省管理账号对应的企业管理和人员管理列表添加筛选,创建日期范围
parent
effb3b94
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
118 additions
and
10 deletions
+118
-10
UserPermissionDto.java
...in/amos/boot/module/common/api/dto/UserPermissionDto.java
+22
-1
TzBaseEnterpriseInfoDto.java
...mos/boot/module/jczs/api/dto/TzBaseEnterpriseInfoDto.java
+16
-0
TzBaseEnterpriseInfo.java
...mos/boot/module/jczs/api/entity/TzBaseEnterpriseInfo.java
+7
-0
TzBaseEnterpriseInfoMapper.xml
.../src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
+3
-1
TzBaseEnterpriseInfoController.java
...e/jczs/biz/controller/TzBaseEnterpriseInfoController.java
+25
-5
TzsUserInfoDto.java
.../yeejoin/amos/boot/module/tcm/api/dto/TzsUserInfoDto.java
+3
-0
TzsUserInfo.java
.../yeejoin/amos/boot/module/tcm/api/entity/TzsUserInfo.java
+6
-0
TzsUserInfoMapper.xml
...e-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
+5
-1
TzsUserInfoController.java
...boot/module/tcm/biz/controller/TzsUserInfoController.java
+28
-2
TzsUserInfoServiceImpl.java
...t/module/tcm/biz/service/impl/TzsUserInfoServiceImpl.java
+3
-0
No files found.
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/dto/UserPermissionDto.java
View file @
0da748cc
...
@@ -130,5 +130,26 @@ public class UserPermissionDto {
...
@@ -130,5 +130,26 @@ public class UserPermissionDto {
* 更新时间
* 更新时间
*/
*/
@ApiModelProperty
(
value
=
"更新时间"
)
@ApiModelProperty
(
value
=
"更新时间"
)
protected
Date
recDate
;
protected
String
recDate
;
/**
* 创建时间
*/
@ApiModelProperty
(
value
=
"创建时间"
)
protected
String
createDate
;
/**
* 过滤使用-创建时间-开始
*/
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDateStart
;
/**
* 过滤使用-创建时间-结束
*/
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDateEnd
;
}
}
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/java/com/yeejoin/amos/boot/module/jczs/api/dto/TzBaseEnterpriseInfoDto.java
View file @
0da748cc
...
@@ -304,4 +304,20 @@ public class TzBaseEnterpriseInfoDto extends BaseDto {
...
@@ -304,4 +304,20 @@ public class TzBaseEnterpriseInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"单位所在城市Code"
)
@ApiModelProperty
(
value
=
"单位所在城市Code"
)
private
String
cityCode
;
private
String
cityCode
;
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDate
;
/**
* 过滤使用-创建时间-开始
*/
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDateStart
;
/**
* 过滤使用-创建时间-结束
*/
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDateEnd
;
}
}
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/java/com/yeejoin/amos/boot/module/jczs/api/entity/TzBaseEnterpriseInfo.java
View file @
0da748cc
...
@@ -187,4 +187,11 @@ public class TzBaseEnterpriseInfo extends BaseEntity {
...
@@ -187,4 +187,11 @@ public class TzBaseEnterpriseInfo extends BaseEntity {
@ApiModelProperty
(
value
=
"企业标签信息"
)
@ApiModelProperty
(
value
=
"企业标签信息"
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
@TableField
(
updateStrategy
=
FieldStrategy
.
IGNORED
)
private
String
regulatoryLabels
;
private
String
regulatoryLabels
;
/**
* 创建时间
*/
@TableField
(
value
=
"create_date"
)
protected
Date
createDate
;
}
}
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-api/src/main/resources/mapper/TzBaseEnterpriseInfoMapper.xml
View file @
0da748cc
...
@@ -140,7 +140,9 @@
...
@@ -140,7 +140,9 @@
</otherwise>
</otherwise>
</choose>
</choose>
</if>
</if>
<if
test=
"tzBaseEnterpriseInfoDto.createDateStart != null and tzBaseEnterpriseInfoDto.createDateEnd != null"
>
and (create_date between #{tzBaseEnterpriseInfoDto.createDateStart} and #{tzBaseEnterpriseInfoDto.createDateEnd})
</if>
<if
test=
"orgCodeList != null and !orgCodeList.isEmpty()"
>
<if
test=
"orgCodeList != null and !orgCodeList.isEmpty()"
>
AND (
AND (
<foreach
collection=
"orgCodeList"
item=
"item"
separator=
" OR "
>
<foreach
collection=
"orgCodeList"
item=
"item"
separator=
" OR "
>
...
...
amos-boot-system-tzs/amos-boot-module-jczs/amos-boot-module-jczs-biz/src/main/java/com/yeejoin/amos/boot/module/jczs/biz/controller/TzBaseEnterpriseInfoController.java
View file @
0da748cc
...
@@ -25,16 +25,15 @@ import org.springframework.http.MediaType;
...
@@ -25,16 +25,15 @@ import org.springframework.http.MediaType;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.foundation.utils.ValidationUtil
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.ArrayList
;
import
java.text.SimpleDateFormat
;
import
java.util.Arrays
;
import
java.util.*
;
import
java.util.List
;
import
java.util.Map
;
/**
/**
* 企业数据信息
* 企业数据信息
...
@@ -189,8 +188,29 @@ public class TzBaseEnterpriseInfoController {
...
@@ -189,8 +188,29 @@ public class TzBaseEnterpriseInfoController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据id查询"
,
notes
=
"根据id查询"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据id查询"
,
notes
=
"根据id查询"
)
public
ResponseModel
<
IPage
<
TzBaseEnterpriseInfoDto
>>
page
(
PageParam
pageParam
,
public
ResponseModel
<
IPage
<
TzBaseEnterpriseInfoDto
>>
page
(
PageParam
pageParam
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
Map
<
String
,
String
>
map
)
{
@RequestParam
Map
<
String
,
Object
>
map
)
{
TzBaseEnterpriseInfoDto
tzBaseEnterpriseInfoDto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
TzBaseEnterpriseInfoDto
.
class
);
TzBaseEnterpriseInfoDto
tzBaseEnterpriseInfoDto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
TzBaseEnterpriseInfoDto
.
class
);
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
if
(!
ValidationUtil
.
isEmpty
(
map
.
get
(
"createDateRange"
))){
String
createDateRangeObj
=
Objects
.
toString
(
map
.
get
(
"createDateRange"
));
String
[]
split
=
createDateRangeObj
.
replace
(
"["
,
""
).
replace
(
"]"
,
""
).
split
(
","
);
String
startDateStr
=
split
[
0
];
String
endDateStr
=
split
[
1
];
try
{
Date
startDate
=
sdf
.
parse
(
startDateStr
);
Date
endDate
=
sdf
.
parse
(
endDateStr
);
Calendar
calendar
=
Calendar
.
getInstance
();
calendar
.
setTime
(
endDate
);
calendar
.
set
(
Calendar
.
HOUR_OF_DAY
,
23
);
calendar
.
set
(
Calendar
.
MINUTE
,
59
);
calendar
.
set
(
Calendar
.
SECOND
,
59
);
calendar
.
set
(
Calendar
.
MILLISECOND
,
999
);
endDate
=
calendar
.
getTime
();
tzBaseEnterpriseInfoDto
.
setCreateDateStart
(
startDate
);
tzBaseEnterpriseInfoDto
.
setCreateDateEnd
(
endDate
);
}
catch
(
Exception
e
)
{
}
}
return
ResponseHelper
.
buildResponse
(
iTzBaseEnterpriseInfoService
.
page
(
pageParam
,
tzBaseEnterpriseInfoDto
,
sort
));
return
ResponseHelper
.
buildResponse
(
iTzBaseEnterpriseInfoService
.
page
(
pageParam
,
tzBaseEnterpriseInfoDto
,
sort
));
}
}
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/java/com/yeejoin/amos/boot/module/tcm/api/dto/TzsUserInfoDto.java
View file @
0da748cc
...
@@ -142,4 +142,7 @@ public class TzsUserInfoDto extends BaseDto {
...
@@ -142,4 +142,7 @@ public class TzsUserInfoDto extends BaseDto {
@ApiModelProperty
(
value
=
"更新时间"
)
@ApiModelProperty
(
value
=
"更新时间"
)
protected
Date
recDate
;
protected
Date
recDate
;
@ApiModelProperty
(
value
=
"创建时间"
)
protected
Date
createDate
;
}
}
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/java/com/yeejoin/amos/boot/module/tcm/api/entity/TzsUserInfo.java
View file @
0da748cc
...
@@ -236,4 +236,10 @@ public class TzsUserInfo extends BaseEntity {
...
@@ -236,4 +236,10 @@ public class TzsUserInfo extends BaseEntity {
*/
*/
@TableField
(
value
=
"transfer_out_time"
)
@TableField
(
value
=
"transfer_out_time"
)
protected
Date
transferOutTime
;
protected
Date
transferOutTime
;
/**
* 创建时间
*/
@TableField
(
value
=
"create_date"
)
protected
Date
createDate
;
}
}
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-api/src/main/resources/mapper/TzsUserInfoMapper.xml
View file @
0da748cc
...
@@ -316,7 +316,8 @@
...
@@ -316,7 +316,8 @@
u.sequence_nbr as uid,
u.sequence_nbr as uid,
u.sequence_nbr as "rowId",
u.sequence_nbr as "rowId",
concat(e.city, e.district) as fullAddress,
concat(e.city, e.district) as fullAddress,
u.rec_date,
DATE_FORMAT(u.rec_date,'%Y-%m-%d') AS recDate,
DATE_FORMAT(u.create_date,'%Y-%m-%d') AS createDate,
e.supervise_org_name as superviseOrgName,
e.supervise_org_name as superviseOrgName,
e.supervise_org_name as supervise_org_name,
e.supervise_org_name as supervise_org_name,
e.use_code as useCode
e.use_code as useCode
...
@@ -345,6 +346,9 @@
...
@@ -345,6 +346,9 @@
<if
test=
"filter.superviseOrgCode != null and filter.superviseOrgCode != ''"
>
<if
test=
"filter.superviseOrgCode != null and filter.superviseOrgCode != ''"
>
and e.supervise_org_code like concat('%',#{filter.superviseOrgCode}, '%')
and e.supervise_org_code like concat('%',#{filter.superviseOrgCode}, '%')
</if>
</if>
<if
test=
"filter.createDateStart != null and filter.createDateEnd != null"
>
and (u.create_date between #{filter.createDateStart} and #{filter.createDateEnd})
</if>
</where>
) as a
</where>
) as a
<where>
<where>
<if
test=
"filter.useUnit != null and filter.useUnit != ''"
>
<if
test=
"filter.useUnit != null and filter.useUnit != ''"
>
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/controller/TzsUserInfoController.java
View file @
0da748cc
...
@@ -29,6 +29,7 @@ import com.yeejoin.amos.feign.systemctl.Systemctl;
...
@@ -29,6 +29,7 @@ import com.yeejoin.amos.feign.systemctl.Systemctl;
import
com.yeejoin.amos.feign.systemctl.model.DictionarieValueModel
;
import
com.yeejoin.amos.feign.systemctl.model.DictionarieValueModel
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.util.Assert
;
import
org.springframework.util.Assert
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.ObjectUtils
;
...
@@ -36,15 +37,18 @@ import org.springframework.web.bind.annotation.*;
...
@@ -36,15 +37,18 @@ import org.springframework.web.bind.annotation.*;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.foundation.utils.ValidationUtil
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.exception.instance.BadRequest
;
import
org.typroject.tyboot.core.restful.exception.instance.BadRequest
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
java.text.SimpleDateFormat
;
import
java.util.*
;
import
java.util.*
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
@Slf4j
@RestController
@RestController
@Api
(
tags
=
"用户信息Api"
)
@Api
(
tags
=
"用户信息Api"
)
@RequestMapping
(
value
=
"/userInfo"
)
@RequestMapping
(
value
=
"/userInfo"
)
...
@@ -122,7 +126,7 @@ public class TzsUserInfoController extends BaseController {
...
@@ -122,7 +126,7 @@ public class TzsUserInfoController extends BaseController {
public
ResponseModel
<
IPage
<
TzsUserInfoDto
>>
queryForPage
(
@RequestParam
(
value
=
"current"
)
String
current
,
public
ResponseModel
<
IPage
<
TzsUserInfoDto
>>
queryForPage
(
@RequestParam
(
value
=
"current"
)
String
current
,
@RequestParam
(
value
=
"size"
)
String
size
,
@RequestParam
(
value
=
"size"
)
String
size
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
Map
<
String
,
String
>
map
)
{
@RequestParam
Map
<
String
,
Object
>
map
)
{
TzsUserInfoDto
dto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
TzsUserInfoDto
.
class
);
TzsUserInfoDto
dto
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
TzsUserInfoDto
.
class
);
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
ReginParams
reginParams
=
JSON
.
parseObject
(
redisUtils
.
get
(
RedisKey
.
buildReginKey
(
RequestContext
.
getExeUserId
(),
RequestContext
.
getToken
())).
toString
(),
ReginParams
.
class
);
if
(
ObjectUtils
.
isEmpty
(
reginParams
))
{
if
(
ObjectUtils
.
isEmpty
(
reginParams
))
{
...
@@ -319,10 +323,32 @@ public class TzsUserInfoController extends BaseController {
...
@@ -319,10 +323,32 @@ public class TzsUserInfoController extends BaseController {
@RequestParam
(
value
=
"size"
)
long
size
,
@RequestParam
(
value
=
"size"
)
long
size
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
(
value
=
"sort"
,
required
=
false
)
String
sort
,
@RequestParam
(
required
=
false
,
defaultValue
=
"all"
)
String
type
,
@RequestParam
(
required
=
false
,
defaultValue
=
"all"
)
String
type
,
@RequestBody
Map
<
String
,
String
>
map
)
{
@RequestBody
Map
<
String
,
Object
>
map
)
{
UserPermissionDto
filter
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
UserPermissionDto
.
class
);
UserPermissionDto
filter
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
map
),
UserPermissionDto
.
class
);
filter
.
setOrgCode
(
getSelectedOrgInfo
().
getCompany
().
getOrgCode
());
filter
.
setOrgCode
(
getSelectedOrgInfo
().
getCompany
().
getOrgCode
());
filter
.
setCityCode
(
getSelectedOrgInfo
().
getCompany
().
getCompanyCode
());
filter
.
setCityCode
(
getSelectedOrgInfo
().
getCompany
().
getCompanyCode
());
SimpleDateFormat
sdf
=
new
SimpleDateFormat
(
"yyyy-MM-dd"
);
if
(!
ValidationUtil
.
isEmpty
(
map
.
get
(
"createDateRange"
))){
String
createDateRangeObj
=
Objects
.
toString
(
map
.
get
(
"createDateRange"
));
String
[]
split
=
createDateRangeObj
.
replace
(
"["
,
""
).
replace
(
"]"
,
""
).
split
(
","
);
String
startDateStr
=
split
[
0
];
String
endDateStr
=
split
[
1
];
try
{
Date
startDate
=
sdf
.
parse
(
startDateStr
);
Date
endDate
=
sdf
.
parse
(
endDateStr
);
Calendar
calendar
=
Calendar
.
getInstance
();
calendar
.
setTime
(
endDate
);
calendar
.
set
(
Calendar
.
HOUR_OF_DAY
,
23
);
calendar
.
set
(
Calendar
.
MINUTE
,
59
);
calendar
.
set
(
Calendar
.
SECOND
,
59
);
calendar
.
set
(
Calendar
.
MILLISECOND
,
999
);
endDate
=
calendar
.
getTime
();
filter
.
setCreateDateStart
(
startDate
);
filter
.
setCreateDateEnd
(
endDate
);
}
catch
(
Exception
e
)
{
log
.
error
(
"日期转化异常:{}"
,
e
.
getMessage
());
}
}
Page
<
UserPermissionDto
>
userPermissionDtos
=
tzsUserInfoServiceImpl
.
getUserByPermission
(
current
,
size
,
type
,
filter
,
sort
);
Page
<
UserPermissionDto
>
userPermissionDtos
=
tzsUserInfoServiceImpl
.
getUserByPermission
(
current
,
size
,
type
,
filter
,
sort
);
return
ResponseHelper
.
buildResponse
(
userPermissionDtos
);
return
ResponseHelper
.
buildResponse
(
userPermissionDtos
);
}
}
...
...
amos-boot-system-tzs/amos-boot-module-tcm/amos-boot-module-tcm-biz/src/main/java/com/yeejoin/amos/boot/module/tcm/biz/service/impl/TzsUserInfoServiceImpl.java
View file @
0da748cc
...
@@ -81,6 +81,7 @@ import javax.validation.Validator;
...
@@ -81,6 +81,7 @@ import javax.validation.Validator;
import
java.io.*
;
import
java.io.*
;
import
java.nio.charset.StandardCharsets
;
import
java.nio.charset.StandardCharsets
;
import
java.nio.file.Files
;
import
java.nio.file.Files
;
import
java.text.SimpleDateFormat
;
import
java.util.*
;
import
java.util.*
;
import
java.util.function.Function
;
import
java.util.function.Function
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
...
@@ -1118,6 +1119,7 @@ public class TzsUserInfoServiceImpl extends BaseService<TzsUserInfoDto, TzsUserI
...
@@ -1118,6 +1119,7 @@ public class TzsUserInfoServiceImpl extends BaseService<TzsUserInfoDto, TzsUserI
.
collect
(
Collectors
.
joining
(
","
));
.
collect
(
Collectors
.
joining
(
","
));
tzsUserInfo
.
setSubPostName
(
subPostNames
);
tzsUserInfo
.
setSubPostName
(
subPostNames
);
}
}
tzsUserInfo
.
setCreateDate
(
new
Date
());
tzsUserInfo
=
this
.
createWithModel
(
tzsUserInfo
);
tzsUserInfo
=
this
.
createWithModel
(
tzsUserInfo
);
// 保存资质
// 保存资质
tzsUserPermissionServiceImpl
.
savePermissionData
(
tzsUserInfo
);
tzsUserPermissionServiceImpl
.
savePermissionData
(
tzsUserInfo
);
...
@@ -1512,6 +1514,7 @@ public class TzsUserInfoServiceImpl extends BaseService<TzsUserInfoDto, TzsUserI
...
@@ -1512,6 +1514,7 @@ public class TzsUserInfoServiceImpl extends BaseService<TzsUserInfoDto, TzsUserI
dataList
.
forEach
(
data
->
{
dataList
.
forEach
(
data
->
{
TzsUserInfoDto
dto
=
new
TzsUserInfoDto
();
TzsUserInfoDto
dto
=
new
TzsUserInfoDto
();
BeanUtils
.
copyProperties
(
data
,
dto
);
BeanUtils
.
copyProperties
(
data
,
dto
);
dto
.
setCreateDate
(
new
Date
());
this
.
saveUserInfo
(
dto
);
this
.
saveUserInfo
(
dto
);
});
});
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
...
...
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