You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SRuml/NoticeMapper.java

36 lines
507 B

3 months ago
package com.example.mapper;
import com.example.entity.Notice;
import java.util.List;
/**
* notice
*/
public interface NoticeMapper {
/**
*
*/
int insert(Notice notice);
/**
*
*/
int deleteById(Integer id);
/**
*
*/
int updateById(Notice notice);
/**
* ID
*/
Notice selectById(Integer id);
/**
*
*/
List<Notice> selectAll(Notice notice);
}