All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mingsoft.base.biz.impl.BaseBizImpl Maven / Gradle / Ivy

There is a newer version: 2.2.6
Show newest version
/**
The MIT License (MIT) * Copyright (c) 2016 铭飞科技(mingsoft.net)

 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
 * the Software, and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:

 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.

 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

package com.mingsoft.base.biz.impl;

import java.util.List;
import java.util.Map;
import org.apache.log4j.Logger;
import com.mingsoft.base.biz.IBaseBiz;
import com.mingsoft.base.constant.e.TableEnum;
import com.mingsoft.base.dao.IBaseDao;
import com.mingsoft.base.entity.BaseEntity;
import com.mingsoft.util.PageUtil;


/**
 * 基础业务实现
 * @author 王天培QQ:78750478
 * @version 
 * 版本号:100-000-000
* 创建日期:2012-03-15
* 历史修订:
*/ public abstract class BaseBizImpl implements IBaseBiz { protected final Logger LOG = Logger.getLogger(this.getClass()); @Override public int saveEntity(BaseEntity entity) { return getDao().saveEntity(entity); } @Override public void deleteEntity(int id) { // TODO Auto-generated method stub getDao().deleteEntity(id); } @Override public void updateEntity(BaseEntity entity) { // TODO Auto-generated method stub getDao().updateEntity(entity); } @Override public List queryAll() { // TODO Auto-generated method stub return getDao().queryAll(); } @Override public List queryByPage(PageUtil page,String orderBy,boolean order) { // TODO Auto-generated method stub return getDao().queryByPage(page.getPageNo(),page.getPageSize(), orderBy, order); } @Override public int queryCount(){ return getDao().queryCount(); } @Override public BaseEntity getEntity(int id){ return getDao().getEntity(id); } @Override public List queryBySQL(String table, List fields,Map wheres,Integer begin,Integer end) { // TODO Auto-generated method stub return getDao().queryBySQL(table, fields, wheres,begin,end,null); } @Override public int countBySQL(String table, Map wheres) { // TODO Auto-generated method stub return getDao().countBySQL(table, wheres); } @Override public List queryBySQL(String table, List fields, Map wheres) { // TODO Auto-generated method stub return getDao().queryBySQL(table, fields, wheres,null,null,null); } @Override public void updateBySQL(String table, Map fields, Map wheres) { // TODO Auto-generated method stub getDao().updateBySQL(table, fields, wheres); } @Override public void deleteBySQL(String table, Map wheres) { // TODO Auto-generated method stub getDao().deleteBySQL(table, wheres); } @Override public void insertBySQL(String table, Map fields) { // TODO Auto-generated method stub getDao().insertBySQL(table, fields); } @Override public void createTable(String table, Map fileds) { // TODO Auto-generated method stub getDao().createTable(table, fileds); } @Override public void alterTable(String table, Map fileds,String type) { // TODO Auto-generated method stub getDao().alterTable(table, fileds,type); } public void alterTable(String table, Map fileds,TableEnum type) { // TODO Auto-generated method stub getDao().alterTable(table, fileds,type.toString()); } @Override public void dropTable(String table) { // TODO Auto-generated method stub getDao().dropTable(table); } @Override public void excuteSql(String sql) { // TODO Auto-generated method stub getDao().excuteSql(sql); } protected abstract IBaseDao getDao(); @Override public void saveBatch(List list){ getDao().saveBatch(list); } @Override public void delete(String[] ids){ getDao().delete(ids); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy