Blame view

src/main/java/com/sincere/student/mapper/UniversityReplyMapper.java 441 Bytes
b9411514   陈杰   first
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.sincere.student.mapper;

import com.sincere.student.model.Reply;

import java.util.List;

public interface UniversityReplyMapper {
    int deleteByPrimaryKey(Integer id);

    int insert(Reply record);

    int insertSelective(Reply record);

    List<Reply> selectByMessageId(Integer id);

    int updateByPrimaryKeySelective(Reply record);

    int updateByPrimaryKey(Reply record);

    int deleteByMessageId(int messageId);
}