?? relationmanagedao.java
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -