feat:财务数据区分
This commit is contained in:
@@ -337,8 +337,8 @@ public class ShopStageInfoDAO {
|
||||
public List<ShopStageInfoDO> getSpecialShopStageInfo(List<Long> shopIds, Integer shopSubStage,
|
||||
List<Integer> shopSubStageStatusList,
|
||||
String investmentUserId,
|
||||
List<String> authRegionIds) {
|
||||
return shopStageInfoMapper.getSpecialShopStageInfo(shopIds, shopSubStage, shopSubStageStatusList, investmentUserId, authRegionIds);
|
||||
List<String> authRegionIds,Boolean ownShopFlag) {
|
||||
return shopStageInfoMapper.getSpecialShopStageInfo(shopIds, shopSubStage, shopSubStageStatusList, investmentUserId, authRegionIds,ownShopFlag);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -146,7 +146,9 @@ public interface ShopStageInfoMapper extends Mapper<ShopStageInfoDO> {
|
||||
List<ShopStageInfoDO> getSpecialShopStageInfo(@Param("shopIds") List<Long> shopIds,
|
||||
@Param("shopSubStage") Integer shopSubStage,
|
||||
@Param("shopSubStageStatusList") List<Integer> shopSubStageStatusList,
|
||||
@Param("investmentUserId") String investmentUserId, @Param("authRegionIds") List<String> authRegionIds);
|
||||
@Param("investmentUserId") String investmentUserId,
|
||||
@Param("authRegionIds") List<String> authRegionIds,
|
||||
@Param("ownShopFlag") Boolean ownShopFlag);
|
||||
List<ShopStageInfoDO> getSubStageList(@Param("shopIds") List<Long> shopIds,@Param("shopSubStage") Integer shopSubStage);
|
||||
List<ShopStageInfoDO> getSubStages(@Param("shopIds") List<Long> shopIds,@Param("shopSubStage") Integer shopSubStage);
|
||||
|
||||
|
||||
@@ -331,6 +331,14 @@
|
||||
#{regionId}
|
||||
</foreach>
|
||||
</if>
|
||||
<if test="ownShopFlag!=null">
|
||||
<if test="ownShopFlag">
|
||||
si.join_mode = 3
|
||||
</if>
|
||||
<if test="!ownShopFlag">
|
||||
si.join_mode != 3
|
||||
</if>
|
||||
</if>
|
||||
order by a.update_time desc
|
||||
</where>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user