relationmanagedao.java
来自「基于Sturts+Spring+Hibernate的一个高级销售管理系统。内容丰」· Java 代码 · 共 43 行
JAVA
43 行
package com.yuanchung.sales.dao;
import java.util.List;
import com.yuanchung.sales.exception.ApplicationException;
import com.yuanchung.sales.exception.SystemException;
import com.yuanchung.sales.model.user.User;
public interface RelationManageDAO {
/**
* 根据参数搜索该参数对象表;
*/
public List getActivityRasksByRelation(String relationId, int recordId, int executeState) throws SystemException ;
/**
*
* @param intanceA
* @param intanceB
* @param whereSql
* @return
* @throws ApplicationException
*/
public List getEventByRelation(String relationId, int recordId, boolean isOverdue) throws SystemException;
public List getActivityRasks(int contactId, int executeState) throws SystemException;
/**
* 根据修改人的ID查找用户
* @param modifyManId
* @return
* @throws SystemException
*/
public User getUserByModifyManId(int modifyManId) throws SystemException;
/**
* 查找是否过期的事件
* @param contactId
* @param isNotOverdue
* @return
* @throws SystemException
*/
public List getEvents(int contactId, boolean isNotOverdue) throws SystemException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?