fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/PushRecordMapper.java
@@ -1,18 +1,8 @@ package com.yeshi.fanli.dao.mybatis.push; import com.yeshi.fanli.dao.BaseMapper; import com.yeshi.fanli.entity.xinge.PushRecord; public interface PushRecordMapper { public interface PushRecordMapper extends BaseMapper<PushRecord>{ int deleteByPrimaryKey(Long id); int insert(PushRecord record); int insertSelective(PushRecord record); PushRecord selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PushRecord record); int updateByPrimaryKey(PushRecord record); }