This commit is contained in:
shuo.wang
2024-10-12 19:11:28 +08:00
parent 0d2b9906af
commit 0b528c4dee
2 changed files with 2 additions and 4 deletions

View File

@@ -52,8 +52,8 @@
select *
from xfsg_operation_log
where shop_id = #{shopId}
<if test="shopSubStageStatusList !=null and shopSubStageStatusList.size()>0">
and shopSubStage in
<if test="shopSubStageList !=null and shopSubStageList.size()>0">
and shop_sub_stage in
<foreach collection="shopSubStageList" index="index" item="shopSubStage" open="(" close=")"
separator=",">
#{shopSubStage}

View File

@@ -85,9 +85,7 @@ public class PCPlatformBuildController {
shopSubStageList.add(ShopSubStageEnum.SHOP_STAGE_21.getShopSubStage());
}else if (type.equals(PlatformBuildEnum.MEI_TUAN_WAI_MAI.getCode())) {
shopSubStageList.add(ShopSubStageEnum.SHOP_STAGE_19.getShopSubStage());
}
return ResponseResult.success(operationLogService.getAuditInfo(shopId, shopSubStageList));
}