|
@@ -87,7 +87,7 @@ public class BizResourceAllocationController extends BaseController
|
|
{
|
|
{
|
|
final String tenantId = request.getHeader("tenantId");
|
|
final String tenantId = request.getHeader("tenantId");
|
|
QueryWrapper queryWrapper = new QueryWrapper<>();
|
|
QueryWrapper queryWrapper = new QueryWrapper<>();
|
|
- queryWrapper.eq("tenant_id" , tenantId);
|
|
|
|
|
|
+ queryWrapper.eq("tenant_id" , Long.valueOf(tenantId));
|
|
queryWrapper.eq("dept_user_id", bizResourceAllocation.get(0).getDeptUserId());
|
|
queryWrapper.eq("dept_user_id", bizResourceAllocation.get(0).getDeptUserId());
|
|
List<BizResourceAllocation> oldList = bizResourceAllocationService.list(queryWrapper);
|
|
List<BizResourceAllocation> oldList = bizResourceAllocationService.list(queryWrapper);
|
|
for (BizResourceAllocation item: bizResourceAllocation
|
|
for (BizResourceAllocation item: bizResourceAllocation
|