Initial commit
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.ruoyi.jysystem.mapper;
|
||||
|
||||
import com.ruoyi.jysystem.domain.JySysTenantLens;
|
||||
import com.ruoyi.jysystem.vo.JySysTenantLensVO;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 租户可配镜片Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
*/
|
||||
public interface JySysTenantLensMapper
|
||||
{
|
||||
List<JySysTenantLensVO> selectJySysTenantLensListByTenantId(@Param("tenantId") Long tenantId);
|
||||
|
||||
List<JySysTenantLensVO> selectJySysTenantLensByTenantIdAndLensIds(@Param("tenantId") Long tenantId, @Param("lensIds") List<Long> lensIds);
|
||||
|
||||
int insertJySysTenantLens(JySysTenantLens jySysTenantLens);
|
||||
|
||||
int deleteJySysTenantLensByTenantId(@Param("tenantId") Long tenantId);
|
||||
|
||||
int countByLensId(@Param("lensId") Long lensId);
|
||||
}
|
||||
Reference in New Issue
Block a user