customdisposeserviceimpl.java.svn-base
来自「本例使用Java + Jsp 实现选择树的过程,主要使用Struts+JDBC/」· SVN-BASE 代码 · 共 108 行
SVN-BASE
108 行
/*
* $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 + =
减小字号Ctrl + -
显示快捷键?