Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jyzb_platformV2
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
赵剑炜
jyzb_platformV2
Commits
af39161a
Commit
af39161a
authored
Mar 10, 2024
by
赵剑炜
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改盘点功能
parent
b413bd27
隐藏空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
77 行增加
和
44 行删除
+77
-44
BussinessInventoryDto.java
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/dto/BussinessInventoryDto.java
+1
-1
TypeSizeDto.java
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/dto/TempDto/TypeSizeDto.java
+12
-0
QueryEquipmentTypeReq.java
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/query/QueryEquipmentTypeReq.java
+2
-3
EquipmentTypeMapper.java
jyzb-biz/src/main/java/com/junmp/jyzb/mapper/EquipmentTypeMapper.java
+3
-0
EquipmentTypeService.java
jyzb-biz/src/main/java/com/junmp/jyzb/service/EquipmentTypeService.java
+4
-0
BussinessInventoryServiceImpl.java
jyzb-biz/src/main/java/com/junmp/jyzb/service/impl/BussinessInventoryServiceImpl.java
+21
-6
EquipmentTypeServiceImpl.java
jyzb-biz/src/main/java/com/junmp/jyzb/service/impl/EquipmentTypeServiceImpl.java
+22
-0
EquipmentTypeMapper.xml
jyzb-biz/src/main/resources/mapper/EquipmentTypeMapper.xml
+11
-0
InventorySummaryMapper.xml
jyzb-biz/src/main/resources/mapper/InventorySummaryMapper.xml
+0
-33
application.yml
jyzb-boot/src/main/resources/application.yml
+1
-1
没有找到文件。
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/dto/BussinessInventoryDto.java
View file @
af39161a
...
@@ -9,7 +9,7 @@ import java.util.List;
...
@@ -9,7 +9,7 @@ import java.util.List;
@Data
@Data
public
class
BussinessInventoryDto
implements
Serializable
{
public
class
BussinessInventoryDto
implements
Serializable
{
private
String
rules
;
private
String
totalNum
;
private
String
totalNum
;
private
String
actualNum
;
private
String
actualNum
;
private
String
addNum
;
private
String
addNum
;
...
...
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/dto/TempDto/TypeSizeDto.java
0 → 100644
View file @
af39161a
package
com
.
junmp
.
jyzb
.
api
.
bean
.
dto
.
TempDto
;
import
lombok.Data
;
import
java.io.Serializable
;
@Data
public
class
TypeSizeDto
implements
Serializable
{
private
String
sizeId
;
private
String
typeName
;
private
String
sizeName
;
}
jyzb-api/src/main/java/com/junmp/jyzb/api/bean/query/QueryEquipmentTypeReq.java
View file @
af39161a
...
@@ -21,10 +21,9 @@ public class QueryEquipmentTypeReq {
...
@@ -21,10 +21,9 @@ public class QueryEquipmentTypeReq {
private
String
typeName
;
private
String
typeName
;
private
String
nickName
;
private
String
nickName
;
private
Date
updateTime
;
private
Date
updateTime
;
/**
* 是否需要添加组织机构返回
*/
private
Boolean
flag
;
private
Boolean
flag
;
private
String
name
;
private
String
name
;
private
String
typeIds
;
private
String
sizeIds
;
}
}
jyzb-biz/src/main/java/com/junmp/jyzb/mapper/EquipmentTypeMapper.java
View file @
af39161a
...
@@ -3,6 +3,7 @@ package com.junmp.jyzb.mapper;
...
@@ -3,6 +3,7 @@ package com.junmp.jyzb.mapper;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.junmp.jyzb.api.bean.dto.EquipmentTypeDto
;
import
com.junmp.jyzb.api.bean.dto.EquipmentTypeDto
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.TypeDto
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.TypeDto
;
import
com.junmp.jyzb.api.bean.dto.TempDto.TypeSizeDto
;
import
com.junmp.jyzb.api.bean.query.QueryEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.query.QueryEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.req.UpdateEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.req.UpdateEquipmentTypeReq
;
import
com.junmp.jyzb.entity.EquipmentType
;
import
com.junmp.jyzb.entity.EquipmentType
;
...
@@ -24,6 +25,7 @@ public interface EquipmentTypeMapper extends BaseMapper<EquipmentType> {
...
@@ -24,6 +25,7 @@ public interface EquipmentTypeMapper extends BaseMapper<EquipmentType> {
@Param
(
"list2"
)
List
<
String
>
list2
,
@Param
(
"list2"
)
List
<
String
>
list2
,
@Param
(
"list3"
)
List
<
String
>
list3
,
@Param
(
"list3"
)
List
<
String
>
list3
,
@Param
(
"list4"
)
List
<
String
>
list4
);
@Param
(
"list4"
)
List
<
String
>
list4
);
List
<
TypeSizeDto
>
GetNameBySizeIds
(
@Param
(
"sizeIds"
)
List
<
String
>
sizeIds
);
List
<
TypeDto
>
alignTypeInfo
(
@Param
(
"date"
)
String
date
);
List
<
TypeDto
>
alignTypeInfo
(
@Param
(
"date"
)
String
date
);
}
}
\ No newline at end of file
jyzb-biz/src/main/java/com/junmp/jyzb/service/EquipmentTypeService.java
View file @
af39161a
...
@@ -19,6 +19,10 @@ public interface EquipmentTypeService extends IService<EquipmentType> {
...
@@ -19,6 +19,10 @@ public interface EquipmentTypeService extends IService<EquipmentType> {
Object
addEs
();
Object
addEs
();
String
addEquipment
(
UpdateEquipmentTypeReq
req
);
String
addEquipment
(
UpdateEquipmentTypeReq
req
);
String
GetEquipmentByIds
(
QueryEquipmentTypeReq
req
);
String
GetEquipmentBySizeIds
(
QueryEquipmentTypeReq
req
);
Boolean
deleteEquipment
(
UpdateEquipmentTypeReq
req
);
Boolean
deleteEquipment
(
UpdateEquipmentTypeReq
req
);
Boolean
updateEquipment
(
UpdateEquipmentTypeReq
msg
);
Boolean
updateEquipment
(
UpdateEquipmentTypeReq
msg
);
Boolean
changeEquipmentState
(
UpdateEquipmentTypeReq
req
);
Boolean
changeEquipmentState
(
UpdateEquipmentTypeReq
req
);
...
...
jyzb-biz/src/main/java/com/junmp/jyzb/service/impl/BussinessInventoryServiceImpl.java
View file @
af39161a
...
@@ -13,6 +13,7 @@ import com.junmp.junmpProcess.service.IFlowInstanceService;
...
@@ -13,6 +13,7 @@ import com.junmp.junmpProcess.service.IFlowInstanceService;
import
com.junmp.jyzb.api.bean.dto.*
;
import
com.junmp.jyzb.api.bean.dto.*
;
import
com.junmp.jyzb.api.bean.query.BussinessInventoryReq
;
import
com.junmp.jyzb.api.bean.query.BussinessInventoryReq
;
import
com.junmp.jyzb.api.bean.query.InventorySumReq
;
import
com.junmp.jyzb.api.bean.query.InventorySumReq
;
import
com.junmp.jyzb.api.bean.query.QueryEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.req.UpdateDetailReq
;
import
com.junmp.jyzb.api.bean.req.UpdateDetailReq
;
import
com.junmp.jyzb.api.bean.req.UpdateInventoryReq
;
import
com.junmp.jyzb.api.bean.req.UpdateInventoryReq
;
import
com.junmp.jyzb.api.bean.req.UploadInventoryReq
;
import
com.junmp.jyzb.api.bean.req.UploadInventoryReq
;
...
@@ -79,6 +80,8 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -79,6 +80,8 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
@Resource
@Resource
private
InventoryService
inventoryService
;
private
InventoryService
inventoryService
;
@Resource
private
EquipmentTypeService
equipmentTypeService
;
@Resource
@Resource
private
InventoryMapper
inventoryMapper
;
private
InventoryMapper
inventoryMapper
;
...
@@ -271,17 +274,27 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -271,17 +274,27 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
sumreq
.
setLocationType
(
"0"
);
sumreq
.
setLocationType
(
"0"
);
sumreq
.
setLocationId
(
warehouseId
);
sumreq
.
setLocationId
(
warehouseId
);
BussinessInventoryDto
BIDto
=
new
BussinessInventoryDto
();
BussinessInventoryDto
BIDto
=
new
BussinessInventoryDto
();
String
rules
=
"盘点规则-"
;
if
(
type
.
equals
(
"1"
))
//按装备类型盘点
if
(
type
.
equals
(
"1"
))
//按装备类型盘点
{
{
List
<
String
>
typeIds
=
Arrays
.
asList
(
inventory
.
getRules
().
split
(
","
));
List
<
String
>
typeIds
=
Arrays
.
asList
(
inventory
.
getRules
().
split
(
","
));
sumreq
.
setTypeIds
(
typeIds
);
sumreq
.
setTypeIds
(
typeIds
);
QueryEquipmentTypeReq
typeReq
=
new
QueryEquipmentTypeReq
();
typeReq
.
setTypeIds
(
inventory
.
getRules
());
String
types
=
equipmentTypeService
.
GetEquipmentByIds
(
typeReq
);
rules
=
rules
+
"类别盘点:"
+
types
;
}
else
if
(
type
.
equals
(
"2"
))
//按装备号型盘点
}
else
if
(
type
.
equals
(
"2"
))
//按装备号型盘点
{
{
QueryEquipmentTypeReq
typeReq
=
new
QueryEquipmentTypeReq
();
List
<
String
>
sizeIds
=
Arrays
.
asList
(
inventory
.
getRules
().
split
(
","
));
List
<
String
>
sizeIds
=
Arrays
.
asList
(
inventory
.
getRules
().
split
(
","
));
sumreq
.
setSizeIds
(
sizeIds
);
sumreq
.
setSizeIds
(
sizeIds
);
}
typeReq
.
setSizeIds
(
inventory
.
getRules
());
String
sizes
=
equipmentTypeService
.
GetEquipmentBySizeIds
(
typeReq
);
rules
=
rules
+
"类别及号型盘点:"
+
sizes
;
}
BIDto
.
setRules
(
rules
);
List
<
EquipmentListDto
>
eqList
=
new
ArrayList
<>();
List
<
EquipmentListDto
>
eqList
=
new
ArrayList
<>();
Integer
totalNumber
=
0
;
Integer
totalNumber
=
0
;
...
@@ -289,7 +302,6 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -289,7 +302,6 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
Map
<
String
,
EquipmentListDto
>
processedData
=
new
HashMap
<>();
Map
<
String
,
EquipmentListDto
>
processedData
=
new
HashMap
<>();
List
<
InventorySummary
>
SumResult
=
inventorySummaryService
.
getEquipmentInfoList
(
sumreq
);
List
<
InventorySummary
>
SumResult
=
inventorySummaryService
.
getEquipmentInfoList
(
sumreq
);
for
(
InventorySummary
summary
:
SumResult
)
{
for
(
InventorySummary
summary
:
SumResult
)
{
String
key
=
summary
.
getSizeId
()
+
"-"
+
summary
.
getTypeId
();
String
key
=
summary
.
getSizeId
()
+
"-"
+
summary
.
getTypeId
();
...
@@ -632,7 +644,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -632,7 +644,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
for
(
BussinessDetail
bdList
:
bussinessDetail
)
{
for
(
BussinessDetail
bdList
:
bussinessDetail
)
{
InventorySummary
InsertSum
=
new
InventorySummary
();
InventorySummary
InsertSum
=
new
InventorySummary
();
InsertSum
.
setValuekey
(
org
.
getOrgCode
()+
BI
.
getWarehouseId
()+
bdList
.
getTypeId
()+
bdList
.
getSizeId
()+
bdList
.
getPrice
()+
"0"
);
InsertSum
.
setValuekey
(
org
.
getOrgCode
()+
BI
.
getWarehouseId
()+
bdList
.
getTypeId
()+
bdList
.
getSizeId
()+
bdList
.
getPrice
()+
"0"
);
InsertSum
.
setNumber
(
bdList
.
get
Num
());
InsertSum
.
setNumber
(
bdList
.
get
FixNumber
());
InsertSum
.
setOrgId
(
BI
.
getOrgId
());
InsertSum
.
setOrgId
(
BI
.
getOrgId
());
InsertSum
.
setOrgName
(
BI
.
getOrgName
());
InsertSum
.
setOrgName
(
BI
.
getOrgName
());
InsertSum
.
setOrgCode
(
org
.
getOrgCode
());
InsertSum
.
setOrgCode
(
org
.
getOrgCode
());
...
@@ -645,7 +657,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -645,7 +657,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
InsertSum
.
setLocationName
(
BI
.
getWarehouseName
());
InsertSum
.
setLocationName
(
BI
.
getWarehouseName
());
InsertSum
.
setUnitPrice
(
bdList
.
getPrice
());
InsertSum
.
setUnitPrice
(
bdList
.
getPrice
());
InsertSum
.
setPrice
(
bdList
.
getStockPrice
());
InsertSum
.
setPrice
(
bdList
.
getStockPrice
());
InsertSum
.
setStockNumber
(
bdList
.
get
Stock
Number
());
InsertSum
.
setStockNumber
(
bdList
.
get
Fix
Number
());
InsertSum
.
setStockNumberPrice
(
bdList
.
getStockPrice
());
InsertSum
.
setStockNumberPrice
(
bdList
.
getStockPrice
());
InsertSum
.
setOutboundNumber
(
0
);
InsertSum
.
setOutboundNumber
(
0
);
InsertSum
.
setOutboundNumberPrice
(
BigDecimal
.
valueOf
(
0
));
InsertSum
.
setOutboundNumberPrice
(
BigDecimal
.
valueOf
(
0
));
...
@@ -655,6 +667,9 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -655,6 +667,9 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
InsertSum
.
setExpireNumberPrice
(
BigDecimal
.
valueOf
(
0
));
InsertSum
.
setExpireNumberPrice
(
BigDecimal
.
valueOf
(
0
));
InsertSum
.
setBrokenNumber
(
0
);
InsertSum
.
setBrokenNumber
(
0
);
InsertSum
.
setBrokenNumberPrice
(
BigDecimal
.
valueOf
(
0
));
InsertSum
.
setBrokenNumberPrice
(
BigDecimal
.
valueOf
(
0
));
InsertSum
.
setProperty
(
0
);
InsertSum
.
setUpdateTime
(
DateTimeUtil
.
getCurrentDateTime
());
InsertSum
.
setCreateTime
(
DateTimeUtil
.
getCurrentDateTime
());
InsertSumResult
.
add
(
InsertSum
);
InsertSumResult
.
add
(
InsertSum
);
}
}
}
}
...
@@ -851,7 +866,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
...
@@ -851,7 +866,7 @@ public class BussinessInventoryServiceImpl extends ServiceImpl<BussinessInventor
}
}
if
(
InsertSumResult
.
size
()>
0
)
if
(
InsertSumResult
.
size
()>
0
)
{
{
inventorySummaryService
.
saveBatch
(
SumResult
);
inventorySummaryService
.
saveBatch
(
Insert
SumResult
);
}
}
//入库添加虚拟装备
//入库添加虚拟装备
if
(
CollectionUtil
.
isNotEmpty
(
addInvList
)){
if
(
CollectionUtil
.
isNotEmpty
(
addInvList
)){
...
...
jyzb-biz/src/main/java/com/junmp/jyzb/service/impl/EquipmentTypeServiceImpl.java
View file @
af39161a
...
@@ -10,6 +10,7 @@ import com.junmp.jyzb.Repository.TypeRepository;
...
@@ -10,6 +10,7 @@ import com.junmp.jyzb.Repository.TypeRepository;
import
com.junmp.jyzb.api.bean.dto.*
;
import
com.junmp.jyzb.api.bean.dto.*
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.SizeDto
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.SizeDto
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.TypeDto
;
import
com.junmp.jyzb.api.bean.dto.FetchingDataDto.TypeDto
;
import
com.junmp.jyzb.api.bean.dto.TempDto.TypeSizeDto
;
import
com.junmp.jyzb.api.bean.query.QueryEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.query.QueryEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.req.UpdateEquipmentTypeReq
;
import
com.junmp.jyzb.api.bean.req.UpdateEquipmentTypeReq
;
import
com.junmp.jyzb.api.exception.JYZBAppException
;
import
com.junmp.jyzb.api.exception.JYZBAppException
;
...
@@ -162,9 +163,30 @@ public class EquipmentTypeServiceImpl extends ServiceImpl<EquipmentTypeMapper, E
...
@@ -162,9 +163,30 @@ public class EquipmentTypeServiceImpl extends ServiceImpl<EquipmentTypeMapper, E
}
}
@Override
public
String
GetEquipmentByIds
(
QueryEquipmentTypeReq
req
)
{
List
<
String
>
typeIds
=
Arrays
.
asList
(
req
.
getTypeIds
().
split
(
","
));
List
<
EquipmentType
>
list
=
list
(
new
LambdaQueryWrapper
<
EquipmentType
>()
.
and
(
qw
->
typeIds
.
forEach
(
typeId
->
qw
.
or
().
eq
(
EquipmentType:
:
getId
,
typeId
))));
list
.
forEach
(
p
->
p
.
getName
());
String
concatenatedNames
=
list
.
stream
()
.
map
(
EquipmentType:
:
getName
)
// 获取每个 EquipmentType 的 name 属性
.
collect
(
Collectors
.
joining
(
","
));
// 使用逗号拼接所有的 name
return
concatenatedNames
;
}
@Override
@Override
public
String
GetEquipmentBySizeIds
(
QueryEquipmentTypeReq
req
)
{
List
<
String
>
sizeIds
=
Arrays
.
asList
(
req
.
getSizeIds
().
split
(
","
));
List
<
TypeSizeDto
>
sizeList
=
equipmentTypeMapper
.
GetNameBySizeIds
(
sizeIds
);
String
concatenatedNames
=
sizeList
.
stream
()
.
map
(
dto
->
dto
.
getTypeName
()
+
"-"
+
dto
.
getSizeName
())
// 获取每个 EquipmentType 的 name 属性
.
collect
(
Collectors
.
joining
(
","
));
// 使用逗号拼接所有的 name
return
concatenatedNames
;
}
@Override
public
Boolean
deleteEquipment
(
UpdateEquipmentTypeReq
req
)
{
public
Boolean
deleteEquipment
(
UpdateEquipmentTypeReq
req
)
{
LambdaQueryWrapper
<
EquipmentType
>
wrapper
=
new
LambdaQueryWrapper
<>();
LambdaQueryWrapper
<
EquipmentType
>
wrapper
=
new
LambdaQueryWrapper
<>();
wrapper
.
eq
(
ObjectUtil
.
isNotEmpty
(
req
.
getId
()),
EquipmentType:
:
getParentId
,
req
.
getParentId
());
wrapper
.
eq
(
ObjectUtil
.
isNotEmpty
(
req
.
getId
()),
EquipmentType:
:
getParentId
,
req
.
getParentId
());
...
...
jyzb-biz/src/main/resources/mapper/EquipmentTypeMapper.xml
View file @
af39161a
...
@@ -44,6 +44,17 @@
...
@@ -44,6 +44,17 @@
SET t1.parent_ids = t2.parent_ids
SET t1.parent_ids = t2.parent_ids
WHERE t1.parent_id IS NOT NULL;
WHERE t1.parent_id IS NOT NULL;
</update>
</update>
<select
id=
"GetNameBySizeIds"
resultType=
"com.junmp.jyzb.api.bean.dto.TempDto.TypeSizeDto"
>
SELECT bes.id as size_id, bet.`name` as typeName,bes.`name` as sizeName
FROM base_equipment_type bet join `base_equipment_size` bes
on bet.id=bes.type_id
where bes.id in
<foreach
collection=
"sizeIds"
item=
"item"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</select>
<select
id=
"selectByItems"
resultType=
"java.lang.String"
>
<select
id=
"selectByItems"
resultType=
"java.lang.String"
>
SELECT DISTINCT t4.id, t4.parent_id
SELECT DISTINCT t4.id, t4.parent_id
FROM base_equipment_type t1
FROM base_equipment_type t1
...
...
jyzb-biz/src/main/resources/mapper/InventorySummaryMapper.xml
View file @
af39161a
...
@@ -816,39 +816,6 @@
...
@@ -816,39 +816,6 @@
LEFT JOIN base_supplier bs ON bs.id = i.supplier_id
LEFT JOIN base_supplier bs ON bs.id = i.supplier_id
WHERE wi.org_id=#{req.orgId} and wi.type_id=#{req.typeId} and i.state !="destory"
WHERE wi.org_id=#{req.orgId} and wi.type_id=#{req.typeId} and i.state !="destory"
-- SELECT //修改后应该按照这个来
-- wi.type_id,
-- wi.size_id,
-- wi.shelf_id,
-- wi.shelf_location,
-- wi.epc,
-- wi.org_id,
-- wi.location_state,
-- wi.location_type,
-- wi.location_id,
-- i.id,
-- i.supplier_id,
-- i.price,
-- i.state,
-- i.bussiness_state,
-- i.production_date,
-- i.warranty_period,
-- i.maintenance_period,
-- i.term_state,
-- i.property,
-- i.area_id,
-- wi.type_name AS type_name,
-- wi.size_name AS size_name,
-- wi.org_name AS org_name,
-- bs.NAME AS supplier_name,
-- wi.location_name AS location_name
-- FROM
-- base_warehouse_inventory wi
-- LEFT JOIN base_inventory i ON i.epc = wi.epc
-- LEFT JOIN base_supplier bs ON bs.id = i.supplier_id
<if
test=
"req.locationType !='all' and req.locationType != null"
>
<if
test=
"req.locationType !='all' and req.locationType != null"
>
and wi.location_type=#{req.locationType}
and wi.location_type=#{req.locationType}
</if>
</if>
...
...
jyzb-boot/src/main/resources/application.yml
View file @
af39161a
...
@@ -33,7 +33,7 @@ spring:
...
@@ -33,7 +33,7 @@ spring:
virtual-host
:
/
virtual-host
:
/
profiles
:
profiles
:
#@spring.active@
#@spring.active@
active
:
prod
active
:
local
servlet
:
servlet
:
multipart
:
multipart
:
max-request-size
:
500MB
max-request-size
:
500MB
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论