com.hframe.service.impl.HfpmPageSVImpl Maven / Gradle / Ivy
The newest version!
package com.hframe.service.impl;
import java.util.*;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import com.google.common.collect.Lists;
import com.hframe.domain.model.HfpmPage;
import com.hframe.domain.model.HfpmPage_Example;
import com.hframe.dao.HfpmPageMapper;
import com.hframe.service.interfaces.IHfpmPageSV;
@Service("iHfpmPageSV")
public class HfpmPageSVImpl implements IHfpmPageSV {
@Resource
private HfpmPageMapper hfpmPageMapper;
/**
* 创建椤甸潰
* @param hfpmPage
* @return
* @throws Exception
*/
public int create(HfpmPage hfpmPage) throws Exception {
return hfpmPageMapper.insertSelective(hfpmPage);
}
/**
* 批量维护椤甸潰
* @param hfpmPages
* @return
* @throws Exception
*/
public int batchOperate(HfpmPage[] hfpmPages) throws Exception{
int result = 0;
if(hfpmPages != null) {
for (HfpmPage hfpmPage : hfpmPages) {
if(hfpmPage.getHfpmPageId() == null) {
result += this.create(hfpmPage);
}else {
result += this.update(hfpmPage);
}
}
}
return result;
}
/**
* 更新椤甸潰
* @param hfpmPage
* @return
* @throws Exception
*/
public int update(HfpmPage hfpmPage) throws Exception {
return hfpmPageMapper.updateByPrimaryKeySelective(hfpmPage);
}
/**
* 通过查询对象更新椤甸潰
* @param hfpmPage
* @param example
* @return
* @throws Exception
*/
public int updateByExample(HfpmPage hfpmPage, HfpmPage_Example example) throws Exception {
return hfpmPageMapper.updateByExampleSelective(hfpmPage, example);
}
/**
* 删除椤甸潰
* @param hfpmPage
* @return
* @throws Exception
*/
public int delete(HfpmPage hfpmPage) throws Exception {
return hfpmPageMapper.deleteByPrimaryKey(hfpmPage.getHfpmPageId());
}
/**
* 删除椤甸潰
* @param hfpmPageId
* @return
* @throws Exception
*/
public int delete(long hfpmPageId) throws Exception {
return hfpmPageMapper.deleteByPrimaryKey(hfpmPageId);
}
/**
* 查找所有椤甸潰
* @return
*/
public List getHfpmPageAll() throws Exception {
return hfpmPageMapper.selectByExample(new HfpmPage_Example());
}
/**
* 通过椤甸潰ID查询椤甸潰
* @param hfpmPageId
* @return
* @throws Exception
*/
public HfpmPage getHfpmPageByPK(long hfpmPageId) throws Exception {
return hfpmPageMapper.selectByPrimaryKey(hfpmPageId);
}
/**
* 通过MAP参数查询椤甸潰
* @param params
* @return
* @throws Exception
*/
public List getHfpmPageListByParam(Map params) throws Exception {
return null;
}
/**
* 通过查询对象查询椤甸潰
* @param example
* @return
* @throws Exception
*/
public List getHfpmPageListByExample(HfpmPage_Example example) throws Exception {
return hfpmPageMapper.selectByExample(example);
}
/**
* 通过MAP参数查询椤甸潰数量
* @param params
* @return
* @throws Exception
*/
public int getHfpmPageCountByParam(Map params) throws Exception {
return 0;
}
/**
* 通过查询对象查询椤甸潰数量
* @param example
* @return
* @throws Exception
*/
public int getHfpmPageCountByExample(HfpmPage_Example example) throws Exception {
return hfpmPageMapper.countByExample(example);
}
//getter
public HfpmPageMapper getHfpmPageMapper(){
return hfpmPageMapper;
}
//setter
public void setHfpmPageMapper(HfpmPageMapper hfpmPageMapper){
this.hfpmPageMapper = hfpmPageMapper;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy