admin
2019-03-22 31c87f9868f01facd0c360ab49e3970beca9988d
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);
}