UniversityReplyMapper.java
441 Bytes
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);
}