Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
device-back
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
1
议题
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Matrix
device-back
Commits
d54d997f
提交
d54d997f
authored
9月 22, 2021
作者:
133
浏览文件
操作
浏览文件
下载
差异文件
fix(解决冲突): 解决冲突
解决冲突
上级
c0dc335d
f72a4206
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
433 行增加
和
13 行删除
+433
-13
DeviceCheckController.java
...device/confirmcheck/controller/DeviceCheckController.java
+30
-13
HistorySendBillContriller.java
...device/sendback/controller/HistorySendBillContriller.java
+49
-0
HistorySendBill.java
...kj/dev/device/sendback/entity/domain/HistorySendBill.java
+103
-0
HistorySelectSendBillVo.java
...ev/device/sendback/entity/vo/HistorySelectSendBillVo.java
+30
-0
HistorySendBillVo.java
...tykj/dev/device/sendback/entity/vo/HistorySendBillVo.java
+97
-0
HistorySendBillDao.java
...kj/dev/device/sendback/repository/HistorySendBillDao.java
+15
-0
HistorySendBillService.java
...j/dev/device/sendback/service/HistorySendBillService.java
+16
-0
HistorySendBillServiceImpl.java
...ice/sendback/service/impl/HistorySendBillServiceImpl.java
+93
-0
没有找到文件。
dev-confirmcheck/src/main/java/com/tykj/dev/device/confirmcheck/controller/DeviceCheckController.java
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
confirmcheck
.
controller
;
package
com
.
tykj
.
dev
.
device
.
confirmcheck
.
controller
;
import
cn.hutool.core.lang.Func
;
import
com.github.wenhao.jpa.Specifications
;
import
com.github.wenhao.jpa.Specifications
;
import
com.google.common.collect.ImmutableMap
;
import
com.google.common.collect.ImmutableMap
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Lists
;
...
@@ -61,6 +62,7 @@ import java.time.LocalTime;
...
@@ -61,6 +62,7 @@ import java.time.LocalTime;
import
java.time.format.DateTimeFormatter
;
import
java.time.format.DateTimeFormatter
;
import
java.util.*
;
import
java.util.*
;
import
java.util.function.Function
;
import
java.util.function.Function
;
import
java.util.stream.Collectors
;
import
static
com
.
tykj
.
dev
.
misc
.
base
.
BusinessEnum
.
CONFIRM_CHECK_DETAIL
;
import
static
com
.
tykj
.
dev
.
misc
.
base
.
BusinessEnum
.
CONFIRM_CHECK_DETAIL
;
import
static
com
.
tykj
.
dev
.
misc
.
base
.
BusinessEnum
.
CONFIRM_CHECK_STAT
;
import
static
com
.
tykj
.
dev
.
misc
.
base
.
BusinessEnum
.
CONFIRM_CHECK_STAT
;
...
@@ -265,13 +267,24 @@ public class DeviceCheckController {
...
@@ -265,13 +267,24 @@ public class DeviceCheckController {
}
}
@GetMapping
(
"/detail/refresh/active/{id}"
)
@GetMapping
(
"/detail/refresh/active/{id}"
)
public
ResponseEntity
<
String
>
activeSpecialData
(
@PathVariable
Integer
id
,
@RequestParam
String
unitName1
,
@RequestParam
(
defaultValue
=
""
)
String
unitName2
){
public
ResponseEntity
<
String
>
activeSpecialData
(
@PathVariable
Integer
id
,
@RequestParam
Integer
unitId1
,
@RequestParam
(
defaultValue
=
"0"
)
Integer
unitId2
){
log
.
info
(
"[核查模块] 特殊数据处理,设置specialDetailId = {},specialUnits = {} {} "
,
id
,
unitName1
,
unitName2
);
specialDetailId
=
id
;
String
unitName1
=
""
;
specialUnits
.
add
(
unitName1
);
String
unitName2
=
""
;
unitName1
=
unitsRepo
.
findById
(
unitId1
).
get
().
getName
();
unitName2
=
unitsRepo
.
findById
(
unitId2
).
get
().
getName
();
if
(!
StringUtils
.
isEmpty
(
unitName1
)){
specialUnits
.
add
(
unitName1
);
}
if
(!
StringUtils
.
isEmpty
(
unitName2
)){
if
(!
StringUtils
.
isEmpty
(
unitName2
)){
specialUnits
.
add
(
unitName2
);
specialUnits
.
add
(
unitName2
);
}
}
log
.
info
(
"[核查模块] 特殊数据处理,设置specialDetailId = {},specialUnitsId = {} {} "
,
id
,
unitId1
,
unitId2
);
specialDetailId
=
id
;
return
ResponseEntity
.
ok
(
"设置特殊数据处理成功"
);
return
ResponseEntity
.
ok
(
"设置特殊数据处理成功"
);
}
}
...
@@ -313,6 +326,8 @@ public class DeviceCheckController {
...
@@ -313,6 +326,8 @@ public class DeviceCheckController {
}
}
detail
.
updateDevice
(
devInLib
,
devNotInLib
);
detail
.
updateDevice
(
devInLib
,
devNotInLib
);
//更新应查装备数量
detail
.
setCheckingCount
(
devInLib
.
size
());
detail
=
detailRepo
.
save
(
detail
);
detail
=
detailRepo
.
save
(
detail
);
CheckDetailVo
cdVo
=
transUtil
.
CheckDetailDo2Vo
(
detail
);
CheckDetailVo
cdVo
=
transUtil
.
CheckDetailDo2Vo
(
detail
);
...
@@ -1825,19 +1840,21 @@ public class DeviceCheckController {
...
@@ -1825,19 +1840,21 @@ public class DeviceCheckController {
boolean
hasParent
=
parentTaskId
!=
0
;
boolean
hasParent
=
parentTaskId
!=
0
;
//尝试寻找老的市办结任务,如果有的话就删除加END
//尝试寻找老的市办结任务,如果有的话就删除加END
//5.需要将上一次市的确认任务给清理掉
//5.需要将上一次市的确认任务给清理掉
统计确认任务关联的是statId 找到billId -> exam Task ->
// 父级的父级,就是省的任务,然后子child里名字包含 统计数据确认任务 的任务给 END 吧
// 父级的父级,就是省的任务,然后子child里名字包含 统计数据确认任务 的任务给 END 吧
Task
verifyTask
=
taskRepo
.
findAllByParentTaskId
(
parentTaskId
)
Map
<
Integer
,
List
<
Task
>>
doneTaskList
=
taskRepo
.
findAllByParentTaskId
(
parentTaskId
)
.
stream
()
.
stream
()
.
filter
(
task
->
task
.
getTitle
().
contains
(
"统计数据确认任务"
))
.
filter
(
task
->
task
.
getTitle
().
contains
(
"统计数据确认任务"
))
.
sorted
(
Comparator
.
comparing
(
Task:
:
getId
))
.
collect
(
groupingBy
(
Task:
:
getBillId
));
.
findFirst
()
.
orElse
(
null
);
List
<
Task
>
existsDone
=
doneTaskList
.
get
(
statId
);
if
(
Objects
.
nonNull
(
verifyTask
))
{
if
(
Objects
.
nonNull
(
existsDone
)){
log
.
info
(
"[核查模块] 发现了id = {}市的统计确认任务,将其完结并剔除整个树节点"
,
verifyTask
.
getId
());
for
(
Task
d
:
existsDone
)
{
verifyTask
.
setParentTaskId
(
0
);
log
.
info
(
"[核查模块] 发现了id = {}市的重复的统计确认任务,将其完结并剔除整个树节点"
,
d
.
getId
());
taskService
.
moveToEnd
(
verifyTask
.
parse2Bto
());
d
.
setParentTaskId
(
0
);
taskService
.
moveToEnd
(
d
.
parse2Bto
());
}
}
}
if
(
hasParent
)
{
if
(
hasParent
)
{
...
...
dev-sendback/src/main/java/com/tykj/dev/device/sendback/controller/HistorySendBillContriller.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
controller
;
import
com.tykj.dev.config.swagger.AutoDocument
;
import
com.tykj.dev.device.repair.service.HistoryPepairService
;
import
com.tykj.dev.device.repair.subject.vo.HistorySelectVo
;
import
com.tykj.dev.device.sendback.entity.vo.HistorySelectSendBillVo
;
import
com.tykj.dev.device.sendback.service.HistorySendBillService
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.web.bind.annotation.*
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistoryPepairContriller.java
* @Description TODO
* @createTime 2021年09月17日 10:21:00
*/
@RestController
@RequestMapping
(
value
=
"/historySend"
)
@AutoDocument
@Api
(
tags
=
"历史1。退回 2。退役模块"
,
description
=
"历史1。退回 2。退役模块"
)
public
class
HistorySendBillContriller
{
@Autowired
HistorySendBillService
historySendBillService
;
@ApiOperation
(
value
=
"采集文件"
)
@GetMapping
(
"/read"
)
public
ResponseEntity
test
(){
historySendBillService
.
toDb
();
return
ResponseEntity
.
ok
(
"ok"
);
}
@ApiOperation
(
value
=
"转数据库"
)
@GetMapping
(
"/todb"
)
public
ResponseEntity
toDb
(){
historySendBillService
.
toDb2
();
return
ResponseEntity
.
ok
(
"ok"
);
}
@ApiOperation
(
value
=
"历史数据查询接口"
)
@PostMapping
(
"/select/bill"
)
public
ResponseEntity
findByPageHistoryRepairBill
(
@RequestBody
HistorySelectSendBillVo
historySelectSendBillVo
){
return
ResponseEntity
.
ok
(
historySendBillService
.
findByPageHistoryRepairBill
(
historySelectSendBillVo
));
}
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/entity/domain/HistorySendBill.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
entity
.
domain
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.tykj.dev.device.file.entity.FileRet
;
import
com.tykj.dev.device.repair.subject.domin.HistoryRepairBill
;
import
com.tykj.dev.misc.base.BaseEntity
;
import
com.tykj.dev.misc.utils.JacksonUtil
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
org.hibernate.annotations.Where
;
import
org.springframework.data.jpa.domain.support.AuditingEntityListener
;
import
javax.persistence.*
;
import
java.util.Date
;
import
java.util.List
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistorySendBill.java
* @Description TODO
* @createTime 2021年09月22日 13:23:00
*/
@Data
@Entity
@EntityListeners
(
AuditingEntityListener
.
class
)
@ApiModel
(
"清退详情"
)
@NoArgsConstructor
@AllArgsConstructor
@Where
(
clause
=
"delete_tag = 0"
)
public
class
HistorySendBill
{
@Id
@GeneratedValue
(
strategy
=
GenerationType
.
IDENTITY
)
private
Integer
id
;
private
Integer
oid
;
@JsonProperty
(
"title"
)
private
String
title
;
@JsonProperty
(
"docNo"
)
private
String
docNo
;
@JsonProperty
(
"applyTime"
)
private
String
applyTime
;
@JsonProperty
(
"handleTime"
)
private
String
handleTime
;
@JsonProperty
(
"applyUnitName"
)
private
String
applyUnitName
;
@JsonProperty
(
"applyUserName"
)
private
String
applyUserName
;
@JsonProperty
(
"applyConfirmUserName"
)
private
String
applyConfirmUserName
;
@JsonProperty
(
"handleUnitName"
)
private
String
handleUnitName
;
@JsonProperty
(
"handleUserName"
)
private
String
handleUserName
;
@JsonProperty
(
"handleConfirmUserName"
)
private
String
handleConfirmUserName
;
@Column
(
name
=
"file_rets_send"
,
columnDefinition
=
"text"
)
private
String
fileRetsSend
;
@Column
(
name
=
"file_rets_handle"
,
columnDefinition
=
"text"
)
private
String
fileRetsHandle
;
/**
* 1 为退回 2。退役
*/
private
Integer
type
;
@Transient
private
List
<
FileRet
>
fileRetSendList
;
@Transient
private
List
<
FileRet
>
fileRetHandleList
;
/**
* 删除标记(0:未删除,1:已删除)
*/
private
Integer
deleteTag
=
0
;
public
String
toDo
(){
return
JacksonUtil
.
toJSon
(
this
);
}
public
static
HistorySendBill
toDb
(
String
data
){
return
JacksonUtil
.
readValue
(
data
,
HistorySendBill
.
class
);
}
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/entity/vo/HistorySelectSendBillVo.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
entity
.
vo
;
import
com.tykj.dev.misc.base.CustomPage
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistorySelectSendBillVo.java
* @Description TODO
* @createTime 2021年09月22日 15:09:00
*/
@Data
@ApiModel
(
"历史维修单查询接口"
)
@AllArgsConstructor
@NoArgsConstructor
public
class
HistorySelectSendBillVo
extends
CustomPage
{
@ApiModelProperty
(
name
=
"时间条件"
)
private
String
timeDim
;
@ApiModelProperty
(
name
=
"批复文号"
)
private
String
docNumDim
;
private
Integer
type
;
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/entity/vo/HistorySendBillVo.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
entity
.
vo
;
import
cn.afterturn.easypoi.excel.annotation.Excel
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
com.tykj.dev.device.file.entity.FileRet
;
import
com.tykj.dev.device.sendback.entity.domain.HistorySendBill
;
import
com.tykj.dev.misc.base.BeanHelper
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
lombok.extern.slf4j.Slf4j
;
import
org.modelmapper.ModelMapper
;
import
javax.persistence.*
;
import
java.util.List
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistorySendBill.java
* @Description TODO
* @createTime 2021年09月22日 13:23:00
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@Slf4j
public
class
HistorySendBillVo
{
@ApiModelProperty
(
name
=
"主键id"
)
@Excel
(
name
=
"ID"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
Integer
oid
;
@JsonProperty
(
"docNo"
)
@Excel
(
name
=
"单号"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
docNo
;
@JsonProperty
(
"applyTime"
)
@Excel
(
name
=
"发送时间"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
applyTime
;
@JsonProperty
(
"handleTime"
)
@Excel
(
name
=
"签收时间"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
handleTime
;
@JsonProperty
(
"applyUnitName"
)
@Excel
(
name
=
"发送单位"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
applyUnitName
;
@JsonProperty
(
"applyUserName"
)
@Excel
(
name
=
"发送经办人"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
applyUserName
;
@JsonProperty
(
"applyConfirmUserName"
)
@Excel
(
name
=
"发送签发"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
applyConfirmUserName
;
@JsonProperty
(
"handleUnitName"
)
@Excel
(
name
=
"接收单位"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
handleUnitName
;
@JsonProperty
(
"handleUserName"
)
@Excel
(
name
=
"签收"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
handleUserName
;
@JsonProperty
(
"handleConfirmUserName"
)
@Excel
(
name
=
"经办"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
String
handleConfirmUserName
;
@Excel
(
name
=
"发送单据"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
Integer
applyFileId
;
@Excel
(
name
=
"签收单据"
,
orderNum
=
"1"
,
width
=
30
,
needMerge
=
true
)
private
Integer
handleFileId
;
@Transient
private
List
<
FileRet
>
fileRetSendList
;
@Transient
private
List
<
FileRet
>
fileRetHandleList
;
public
HistorySendBill
toHistorySendBillVo
()
{
ModelMapper
mapper
=
BeanHelper
.
getUserMapper
();
HistorySendBill
historySendBill
=
mapper
.
map
(
this
,
HistorySendBill
.
class
);
return
historySendBill
;
}
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/repository/HistorySendBillDao.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
repository
;
import
com.tykj.dev.device.sendback.entity.domain.HistorySendBill
;
import
org.springframework.data.jpa.repository.JpaRepository
;
import
org.springframework.data.jpa.repository.JpaSpecificationExecutor
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistorySendBillDao.java
* @Description TODO
* @createTime 2021年09月22日 14:10:00
*/
public
interface
HistorySendBillDao
extends
JpaRepository
<
HistorySendBill
,
Integer
>,
JpaSpecificationExecutor
<
HistorySendBill
>
{
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/service/HistorySendBillService.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
service
;
import
com.tykj.dev.device.repair.subject.domin.HistoryRepairBill
;
import
com.tykj.dev.device.repair.subject.vo.HistorySelectVo
;
import
com.tykj.dev.device.sendback.entity.domain.HistorySendBill
;
import
com.tykj.dev.device.sendback.entity.vo.HistorySelectSendBillVo
;
import
org.springframework.data.domain.Page
;
public
interface
HistorySendBillService
{
void
toDb
();
void
toDb2
();
Page
<
HistorySendBill
>
findByPageHistoryRepairBill
(
HistorySelectSendBillVo
historySelectSendBillVo
);
}
dev-sendback/src/main/java/com/tykj/dev/device/sendback/service/impl/HistorySendBillServiceImpl.java
0 → 100644
浏览文件 @
d54d997f
package
com
.
tykj
.
dev
.
device
.
sendback
.
service
.
impl
;
import
com.github.wenhao.jpa.PredicateBuilder
;
import
com.github.wenhao.jpa.Specifications
;
import
com.tykj.dev.device.file.service.FilesUtil
;
import
com.tykj.dev.device.repair.subject.domin.HistoryRepairBill
;
import
com.tykj.dev.device.repair.subject.vo.HistorySelectVo
;
import
com.tykj.dev.device.sendback.entity.domain.HistorySendBill
;
import
com.tykj.dev.device.sendback.entity.vo.HistorySelectSendBillVo
;
import
com.tykj.dev.device.sendback.repository.HistorySendBillDao
;
import
com.tykj.dev.device.sendback.service.HistorySendBillService
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.domain.Page
;
import
org.springframework.data.jpa.domain.Specification
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.ResourceUtils
;
import
java.io.IOException
;
import
java.nio.file.Files
;
import
java.nio.file.Path
;
import
java.nio.file.Paths
;
import
java.util.List
;
import
java.util.stream.Collectors
;
/**
* @author zjm
* @version 1.0.0
* @ClassName HistorySendBillServiceImpl.java
* @Description TODO
* @createTime 2021年09月22日 15:05:00
*/
@Service
@Slf4j
public
class
HistorySendBillServiceImpl
implements
HistorySendBillService
{
@Autowired
HistorySendBillDao
historySendBillDao
;
@Override
public
void
toDb
()
{
Path
path
=
Paths
.
get
(
"file1.txt"
);
List
<
String
>
list
=
historySendBillDao
.
findAll
().
stream
().
map
(
HistorySendBill:
:
toDo
).
collect
(
Collectors
.
toList
());
try
{
Files
.
write
(
path
,
list
);
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
}
}
@Override
public
void
toDb2
()
{
try
{
List
<
String
>
list
=
Files
.
readAllLines
(
Paths
.
get
(
ResourceUtils
.
getURL
(
"classpath:"
).
getPath
()+
"file1.txt"
));
List
<
HistorySendBill
>
historyRepairBills
=
list
.
stream
()
.
map
(
HistorySendBill:
:
toDb
)
.
collect
(
Collectors
.
toList
());
historyRepairBills
.
forEach
(
historyRepairBill
->
{
historySendBillDao
.
save
(
historyRepairBill
);
}
);
}
catch
(
IOException
e
)
{
log
.
error
(
"[toDb2] 找不到文件路径"
);
}
}
@Override
public
Page
<
HistorySendBill
>
findByPageHistoryRepairBill
(
HistorySelectSendBillVo
historySelectSendBillVo
)
{
return
historySendBillDao
.
findAll
(
getSpecificationHistoryRepairBill
(
historySelectSendBillVo
),
historySelectSendBillVo
.
getPageable
()).
map
(
historyRepairBill
->
{
historyRepairBill
.
setFileRetSendList
(
FilesUtil
.
stringFileToList
(
historyRepairBill
.
getFileRetsSend
()));
historyRepairBill
.
setFileRetHandleList
(
FilesUtil
.
stringFileToList
(
historyRepairBill
.
getFileRetsHandle
()));
return
historyRepairBill
;
});
}
private
Specification
<
HistorySendBill
>
getSpecificationHistoryRepairBill
(
HistorySelectSendBillVo
historySelectSendBillVo
)
{
PredicateBuilder
<
HistorySendBill
>
predicateBuilder
=
Specifications
.
and
();
if
(
historySelectSendBillVo
.
getDocNumDim
()
!=
null
)
{
predicateBuilder
.
like
(
"docNo"
,
"%"
+
historySelectSendBillVo
.
getDocNumDim
()+
"%"
);
}
if
(
historySelectSendBillVo
.
getTimeDim
()
!=
null
)
{
predicateBuilder
.
like
(
"applyTime"
,
"%"
+
historySelectSendBillVo
.
getTimeDim
()+
"%"
);
}
predicateBuilder
.
eq
(
"type"
,
historySelectSendBillVo
.
getType
());
return
predicateBuilder
.
build
();
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论