⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iexplanbiz.java

📁 主要实现管理客户以及客户信息和其公司的服务管理
💻 JAVA
字号:
package biz.sale;

import java.util.List;

import entity.ExploitationPlan;
import entity.UserInfo;

public interface IExPlanBIZ {

	public List searchByCondition(ExploitationPlan plan);
	public void addPlan(ExploitationPlan plan, int salesid, UserInfo user);

	public void updatePlan(int planid, ExploitationPlan plan);

	public void deletePlan(int id);
	public void executeSucess(int saleid);
	public void executeFails(int saleid);

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -