• 大小: 1.19MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-05
  • 语言: Java
  • 标签: java  mysql  

资源简介

宠物商店,简单的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.xml

     文件        254  2018-07-24 13:38  petShop\.idea\modules.xml

     文件      56524  2019-03-31 17:10  petShop\.idea\workspace.xml

     文件        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\baseDao.class

     文件       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\database.properties

     文件        420  2017-10-06 18:45  petShop\bin\log4j.properties

     文件       4676  2017-10-12 00:32  petShop\doc\allclasses-frame.html

............此处省略190个文件信息

评论

共有 条评论