資源簡介
寵物商店,簡單的java小程序,適合剛入門的學者.整合了mysql,實現了增刪改查
代碼片段和文件信息
package?cn.jbit.petshop.dao;
import?java.util.List;
import?cn.jbit.petshop.entity.Account;
public?interface?AccountDao?{
/**
?*?保存賬目信息
?*?@param?account?賬目表
?*/
int?save(Account?account);
/**
?*?刪除賬目信息
?*?@param?account?賬目表
?*/
int?del(Account?account);
/**
?*?更新賬目信息
?*?@param?store?賬目表
?*/
int?update(Account?account);
/**
?*?獲取的賬目列表
?*?@return賬目列表集合
?*/
List?findList();
/**
?*?通過賬目對象要求,查找指定賬目對象集合
?*?@param?account?賬目對象
?*?@return?賬目對象集合
?*/
List?findList(Account?account);
/**
?*?獲取相應賬目表對象
?*?@param?id?賬目序號?
?*?@return賬目對象
?*/
Account?findById(int?id);
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????413??2019-03-23?10:48??petShop\.classpath
?????文件????????262??2018-07-24?13:38??petShop\.idea\misc.xm
?????文件????????254??2018-07-24?13:38??petShop\.idea\modules.xm
?????文件??????56524??2019-03-31?17:10??petShop\.idea\workspace.xm
?????文件????????383??2017-10-06?18:21??petShop\.project
?????文件?????????57??2018-07-24?14:00??petShop\.settings\org.eclipse.core.resources.prefs
?????文件????????670??2018-07-24?14:01??petShop\.settings\org.eclipse.jdt.core.prefs
?????文件????????533??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\AccountDao.class
?????文件???????3068??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\ba
?????文件???????6001??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\impl\AccountDaoImpl.class
?????文件???????6448??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\impl\PetDaoImpl.class
?????文件???????5355??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\impl\PetOwnerDaoImpl.class
?????文件???????5716??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\impl\PetStoreDaoImpl.class
?????文件????????501??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\PetDao.class
?????文件????????541??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\PetOwnerDao.class
?????文件????????541??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\dao\PetStoreDao.class
?????文件???????1806??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\entity\Account.class
?????文件???????4561??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\entity\Pet.class
?????文件???????1239??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\entity\PetOwner.class
?????文件???????1245??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\entity\PetStore.class
?????文件???????4976??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\impl\PetOwnerServiceImpl.class
?????文件???????3417??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\impl\PetServiceImpl.class
?????文件???????5984??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\impl\PetStoreServiceImpl.class
?????文件????????639??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\PetOwnerService.class
?????文件????????822??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\PetService.class
?????文件????????984??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\service\PetStoreService.class
?????文件??????21985??2019-03-29?18:58??petShop\bin\cn\jbit\petshop\view\View.class
?????文件????????133??2019-03-23?10:01??petShop\bin\databa
?????文件????????420??2017-10-06?18:45??petShop\bin\log4j.properties
?????文件???????4676??2017-10-12?00:32??petShop\doc\allclasses-fr
............此處省略190個文件信息
評論
共有 條評論