?? presystemstrategyfacadelocal.java
字號:
package com.sinosoft.message.ejb;
import java.util.List;
import javax.ejb.Local;
import com.sinosoft.message.po.Presystemstrategy;
/**
* Local interface for PresystemstrategyFacade.
*
* @author MyEclipse Persistence Tools
*/
@Local
public interface PresystemstrategyFacadeLocal {
/**
* Perform an initial save of a previously unsaved Presystemstrategy entity.
* All subsequent persist actions of this entity should use the #update()
* method.
*
* @param entity
* Presystemstrategy entity to persist
* @throws RuntimeException
* when the operation fails
*/
public void save(Presystemstrategy entity);
/**
* Delete a persistent Presystemstrategy entity.
*
* @param entity
* Presystemstrategy entity to delete
* @throws RuntimeException
* when the operation fails
*/
public void delete(Presystemstrategy entity);
/**
* Persist a previously saved Presystemstrategy entity and return it or a
* copy of it to the sender. A copy of the Presystemstrategy entity
* parameter is returned when the JPA persistence mechanism has not
* previously been tracking the updated entity.
*
* @param entity
* Presystemstrategy entity to update
* @return Presystemstrategy the persisted Presystemstrategy entity
* instance, may not be the same
* @throws RuntimeException
* if the operation fails
*/
public Presystemstrategy update(Presystemstrategy entity);
public Presystemstrategy findById(String id);
/**
* Find all Presystemstrategy entities with a specific property value.
*
* @param propertyName
* the name of the Presystemstrategy property to query
* @param value
* the property value to match
* @param rowStartIdxAndCount
* Optional int varargs. rowStartIdxAndCount[0] specifies the the
* row index in the query result-set to begin collecting the
* results. rowStartIdxAndCount[1] specifies the the maximum
* count of results to return.
* @return List<Presystemstrategy> found by query
*/
public List<Presystemstrategy> findByProperty(String propertyName,
Object value, int... rowStartIdxAndCount);
public List<Presystemstrategy> findByAppStrategyName(
Object appStrategyName, int... rowStartIdxAndCount);
public List<Presystemstrategy> findByAppStrategyDec(Object appStrategyDec,
int... rowStartIdxAndCount);
public List<Presystemstrategy> findBySendtype(Object sendtype,
int... rowStartIdxAndCount);
public List<Presystemstrategy> findByFunmodelid(Object funmodelid,
int... rowStartIdxAndCount);
/**
* Find all Presystemstrategy entities.
*
* @param rowStartIdxAndCount
* Optional int varargs. rowStartIdxAndCount[0] specifies the the
* row index in the query result-set to begin collecting the
* results. rowStartIdxAndCount[1] specifies the the maximum
* count of results to return.
* @return List<Presystemstrategy> all Presystemstrategy entities
*/
public List<Presystemstrategy> findAll(int... rowStartIdxAndCount);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -