admin
2019-03-20 b7eec597af221cbf5d79ba13f440ccb4f63f1bc8
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);
}