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; /** *

* Mapper 接口 *

* * @author ya * @since 2021-07-07 */ public interface SiteMapper extends CrudMapper { int selectCount(@Param("userId") Integer userId, @Param("siteId") Integer siteId, @Param("siteStatus") Integer siteStatus); List list(@Param("userId") Integer userId); }