新增备注列表
This commit is contained in:
@@ -1,19 +1,17 @@
|
||||
package lingtao.net.dao;
|
||||
|
||||
import lingtao.net.bean.StandardMemo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import lingtao.net.bean.Information;
|
||||
public interface StandardMemoMapper {
|
||||
|
||||
public interface InformationMapper {
|
||||
List<StandardMemo> getStandardMemos(StandardMemo standardMemo);
|
||||
|
||||
List<Information> getInformations(Information information);
|
||||
void addStandardMemo(StandardMemo standardMemo);
|
||||
|
||||
void addInformation(Information information);
|
||||
void updateStandardMemoById(StandardMemo standardMemo);
|
||||
|
||||
void updateInformationById(Information information);
|
||||
|
||||
void deleteInformationById(Integer id);
|
||||
|
||||
List<Information> getShortAnswers();
|
||||
void deleteStandardMemoById(Integer id);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user