15 lines
336 B
Java
15 lines
336 B
Java
package org.dromara.system.mapper;
|
|
|
|
import org.dromara.system.domain.SysTenant;
|
|
import org.dromara.system.domain.vo.SysTenantVo;
|
|
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
|
|
|
/**
|
|
* 租户Mapper接口
|
|
*
|
|
* @author Michelle.Chung
|
|
*/
|
|
public interface SysTenantMapper extends BaseMapperPlus<SysTenant, SysTenantVo> {
|
|
|
|
}
|