¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.jeecg.modules.dnc.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.InterceptorIgnore; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.dnc.entity.PermissionStreamNew; |
| | | import org.jeecg.modules.dnc.entity.ProductMix; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface PermissionStreamNewMapper extends BaseMapper<PermissionStreamNew> { |
| | | |
| | | /** |
| | | * æ ¹æ®ç¨æ·idä¸é¨é¨å表è·åç»ææ æé |
| | | * @param userId |
| | | * @return |
| | | */ |
| | | List<ProductMix> loadProductMix(@Param("userId") String userId,@Param("productIdList")List<String> productIdList); |
| | | |
| | | /** |
| | | * æ ¹æ®ç¨æ·idãé¨é¨å表ãidãä¸å¡ç±»åè·å对åºç»ææ æé |
| | | * @param userId |
| | | * @param productIdList |
| | | * @param businessId |
| | | * @param businessType |
| | | * @return |
| | | */ |
| | | @InterceptorIgnore( |
| | | tenantLine = "true", // 忽ç¥å¤ç§æ·æ¡ä»¶ |
| | | blockAttack = "true", // ç»è¿å
¨è¡¨æä½æ£æ¥ |
| | | illegalSql = "true" // ç¦ç¨ SQL 注å
¥æ£æ¥ |
| | | ) |
| | | List<ProductMix> loadProductMixByBusinessId(@Param("userId") String userId,@Param("productIdList")List<String> productIdList, |
| | | @Param("businessId")String businessId,@Param("businessType")String businessType); |
| | | |
| | | /** |
| | | * 管çåè·åæææé |
| | | * @return |
| | | */ |
| | | List<ProductMix> loadProductMixAll(String userId); |
| | | } |