?? 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 + -