com.hframe.service.interfaces.IHfpmPageComponentSV Maven / Gradle / Ivy
The newest version!
package com.hframe.service.interfaces;
import java.util.*;
import com.hframe.domain.model.HfpmPageComponent;
import com.hframe.domain.model.HfpmPageComponent_Example;
public interface IHfpmPageComponentSV {
/**
* 创建椤甸潰缁勪欢
* @param hfpmPageComponent
* @return
* @throws Exception
*/
public int create(HfpmPageComponent hfpmPageComponent) throws Exception;
/**
* 批量维护椤甸潰缁勪欢
* @param hfpmPageComponents
* @return
* @throws Exception
*/
public int batchOperate(HfpmPageComponent[] hfpmPageComponents) throws Exception;
/**
* 更新椤甸潰缁勪欢
* @param hfpmPageComponent
* @return
* @throws Exception
*/
public int update(HfpmPageComponent hfpmPageComponent) throws Exception;
/**
* 通过查询对象更新椤甸潰缁勪欢
* @param hfpmPageComponent
* @param example
* @return
* @throws Exception
*/
public int updateByExample(HfpmPageComponent hfpmPageComponent, HfpmPageComponent_Example example) throws Exception;
/**
* 删除椤甸潰缁勪欢
* @param hfpmPageComponent
* @return
* @throws Exception
*/
public int delete(HfpmPageComponent hfpmPageComponent) throws Exception;
/**
* 删除椤甸潰缁勪欢
* @param hfpmPageComponentId
* @return
* @throws Exception
*/
public int delete(long hfpmPageComponentId) throws Exception;
/**
* 查找所有椤甸潰缁勪欢
* @return
*/
public List getHfpmPageComponentAll() throws Exception;
/**
* 通过椤甸潰缁勪欢ID查询椤甸潰缁勪欢
* @param hfpmPageComponentId
* @return
* @throws Exception
*/
public HfpmPageComponent getHfpmPageComponentByPK(long hfpmPageComponentId) throws Exception;
/**
* 通过MAP参数查询椤甸潰缁勪欢
* @param params
* @return
* @throws Exception
*/
public List getHfpmPageComponentListByParam(Map params) throws Exception;
/**
* 通过查询对象查询椤甸潰缁勪欢
* @param example
* @return
* @throws Exception
*/
public List getHfpmPageComponentListByExample(HfpmPageComponent_Example example) throws Exception;
/**
* 通过MAP参数查询椤甸潰缁勪欢数量
* @param params
* @return
* @throws Exception
*/
public int getHfpmPageComponentCountByParam(Map params) throws Exception;
/**
* 通过查询对象查询椤甸潰缁勪欢数量
* @param example
* @return
* @throws Exception
*/
public int getHfpmPageComponentCountByExample(HfpmPageComponent_Example example) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy