26 lines
746 B
Java
26 lines
746 B
Java
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);
|
|
}
|