yujian
2019-03-20 1e53e5f28c55ece70b28c752fa318e2fd951e643
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);
}