1234567891011121314151617181920212223242526 |
- package com.bizmatics.persistence.mapper;
- import com.bizmatics.model.Site;
- import com.bizmatics.common.mvc.base.CrudMapper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- public interface SiteMapper extends CrudMapper<Site> {
- int selectCount(@Param("userId") Integer userId,
- @Param("siteId") Integer siteId,
- @Param("siteStatus") Integer siteStatus);
- List<Site> list(@Param("userId") Integer userId);
- }
|