yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/homemodule/SuperSpecialMapper.java
@@ -1,30 +1,30 @@
package com.yeshi.fanli.dao.mybatis.homemodule;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecial;
public interface SuperSpecialMapper {
   int deleteByPrimaryKey(Long id);
   int insert(SuperSpecial record);
   int insertSelective(SuperSpecial record);
   SuperSpecial selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(SuperSpecial record);
   int updateByPrimaryKey(SuperSpecial record);
   /**
    * 根据系统id、标识 获取品牌模块
    * @param systemId 系统id
    * @param card 品牌唯一标识
    * @return
    */
   List<SuperSpecial> listBySystemAndCard(@Param("systemId") Long systemId, @Param("card") String card);
package com.yeshi.fanli.dao.mybatis.homemodule;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecial;
public interface SuperSpecialMapper {
   int deleteByPrimaryKey(Long id);
   int insert(SuperSpecial record);
   int insertSelective(SuperSpecial record);
   SuperSpecial selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(SuperSpecial record);
   int updateByPrimaryKey(SuperSpecial record);
   /**
    * 根据系统id、标识 获取品牌模块
    * @param systemId 系统id
    * @param card 品牌唯一标识
    * @return
    */
   List<SuperSpecial> listBySystemAndCard(@Param("systemId") Long systemId, @Param("card") String card);
}