admin
2020-07-14 eec7e789a87863c25d92c10ad5dfc22ad80c448d
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/brand/BrandClassMapper.java
@@ -2,6 +2,7 @@
import java.util.List;
import com.yeshi.fanli.entity.SystemEnum;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.dao.BaseMapper;
@@ -13,7 +14,7 @@
    * 查询品牌分类
    * @return
    */
   List<BrandClass> listEffective();
   List<BrandClass> listEffective(@Param("system")SystemEnum system);
   
   /**
    * 排序
@@ -23,7 +24,6 @@
   
   /**
    * 获取相邻序号
    * @param position
    * @param type
    * @return
    */
@@ -47,8 +47,8 @@
    * @return
    */
   List<BrandClass> listQuery(@Param("start") long start, @Param("count") int count, @Param("key") String key,
         @Param("state") Integer state);
         @Param("state") Integer state,@Param("system") SystemEnum system);
   
   long countQuery(@Param("key") String key, @Param("state") Integer state);
   long countQuery(@Param("key") String key, @Param("state") Integer state,@Param("system")SystemEnum system);
      
}