yujian
2019-03-14 1e17fb5664cd21ff1cf4610016bed2f216e885e6
mapper 文件调整
1个文件已修改
14 ■■■■ 已修改文件
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/push/PushRecordMapper.java 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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);
}