📄 setsurveychildcount.java
字号:
package com.mySurvey.domain;
import com.mySurvey.bean.SurveyChildCount;
public interface SetSurveyChildCount {
//查询调查结果
public abstract SurveyChildCount querySurveyChildCount(SurveyChildCount surveyChildCount);
//保存调查结果
public abstract void insertSurveyChildCount(SurveyChildCount surveyChildCount);
//修改调查结果
public abstract void updateSurveyChildCount(SurveyChildCount surveyChildCount);
//删除调查结果
public abstract void deleteSurveyChildCount(SurveyChildCount surveyChildCount);
//获取是否保存成功的消息
public abstract String getMsg();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -