📄 customdisposeserviceimpl.java.svn-base
字号:
/*
* $Workfile: CustomDisposeServiceImpl.java$
* Copyright (c) 2007 Jama, International.
* All rights reserved.
* Creator kay
* Last Changed by: $Author: kay$
* On: $Date: 2007-8-29 上午09:09:28$
* $Revision: 1$
*/
package com.jama.rcrm.service.business;
import java.util.List;
import com.jama.common.taglib.QueryInfo;
import com.jama.rcrm.service.business.dto.CustomDisposeDTO;
import com.jama.rcrm.service.dao.CustomerDisposeDAO;
public class CustomDisposeServiceImpl
implements CustomDisposeService
{
private CustomerDisposeDAO customerdisposedao;
public CustomerDisposeDAO getCustomerdisposedao()
{
return customerdisposedao;
}
public void setCustomerdisposedao(CustomerDisposeDAO customerdisposedao)
{
this.customerdisposedao = customerdisposedao;
}
public void addTask(CustomDisposeDTO customDisposerdto)
throws Exception
{
customerdisposedao.addTask(customDisposerdto);
}
public void delTask(CustomDisposeDTO customDisposerdto)
throws Exception
{
customerdisposedao.delTask(customDisposerdto);
}
public List findAll(QueryInfo info, String adviseguid)
throws Exception
{
return customerdisposedao.findAll(info, adviseguid);
}
public void updateTask(CustomDisposeDTO customDisposerdto)
throws Exception
{
customerdisposedao.updateTask(customDisposerdto);
}
public CustomDisposeDTO findByidAndUserID(String guid, String userid)
throws Exception
{
return customerdisposedao.findByidAndUserID(guid, userid);
}
public String getAdviseGuid(String task_guid)
throws Exception
{
return customerdisposedao.getAdviseGuid(task_guid);
}
public CustomDisposeDTO getTasksById(String task_guid)
throws Exception
{
return customerdisposedao.getTasksById(task_guid);
}
public List findByAdviseGuid(String adviseguid)
throws Exception
{
return customerdisposedao.findByAdviseGuid(adviseguid);
}
public int getLevelNo(String taskGuid)
throws Exception
{
return customerdisposedao.getLevelNo(taskGuid);
}
public boolean findChildTask(String adviseGuid)
throws Exception
{
return customerdisposedao.findChildTask(adviseGuid);
}
public String findFathertaskDescription(String taskGuid)
throws Exception
{
return customerdisposedao.findFathertaskDescription(taskGuid);
}
public boolean findNoDisposeTasks(String taskGuid)
throws Exception
{
return customerdisposedao.findNoDisposeTasks(taskGuid);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -