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

📄 ilostbiz.java

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

import java.util.List;

import entity.Lost;
import entity.Orders;

public interface ILostBIZ {

	public void addLost(Orders order);

	public List searchByCondition(Lost lost);

	public int getCount(Lost lost);

	public void lostCustomer(int lostid, String cause);

	public List getMeasureByLostId(Integer id);

	public void addMeasure(int lostId, String measure);
	
	public Lost getById(int id);

}

⌨️ 快捷键说明

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