yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/homemodule/SuperSpecialCardMapper.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.SuperSpecialCard;
public interface SuperSpecialCardMapper {
   int deleteByPrimaryKey(Long id);
   int insert(SuperSpecialCard record);
   int insertSelective(SuperSpecialCard record);
   SuperSpecialCard selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(SuperSpecialCard record);
   int updateByPrimaryKey(SuperSpecialCard record);
   List<SuperSpecialCard> listByCardIDs(List<Long> list);
   int deleteBatchByCardId(List<Long> list);
   void deletebyCardIdAndSystemId(@Param("cardId") Long cardId, @Param("systemId") Long systemId);
   List<SuperSpecialCard> querybyCardIdAndSystemId(@Param("cardId") Long cardId, @Param("systemId") Long systemId);
package com.yeshi.fanli.dao.mybatis.homemodule;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yeshi.fanli.entity.bus.homemodule.SuperSpecialCard;
public interface SuperSpecialCardMapper {
   int deleteByPrimaryKey(Long id);
   int insert(SuperSpecialCard record);
   int insertSelective(SuperSpecialCard record);
   SuperSpecialCard selectByPrimaryKey(Long id);
   int updateByPrimaryKeySelective(SuperSpecialCard record);
   int updateByPrimaryKey(SuperSpecialCard record);
   List<SuperSpecialCard> listByCardIDs(List<Long> list);
   int deleteBatchByCardId(List<Long> list);
   void deletebyCardIdAndSystemId(@Param("cardId") Long cardId, @Param("systemId") Long systemId);
   List<SuperSpecialCard> querybyCardIdAndSystemId(@Param("cardId") Long cardId, @Param("systemId") Long systemId);
}