package com.mandi.fendan.service;

import com.mandi.dao.common.PageResult;
import com.mandi.fendan.persist.Fd_Company;

public interface IAreaService {
	
	/**
	 * 获得所有的运输公司
	 * @return
	 */
	public PageResult<Fd_Company> getallcmList();
	
//	/**
//	 * 查找发货地区
//	 * @param pr
//	 * @param search
//	 * @return
//	 */
//	public PageResult<Map<String, Object>> getList();
//	
//	
//	/**
//	 * 获得某个发货地区已选择的运输公司
//	 * @param bianhao
//	 * @return
//	 */
//	public ObjectResult<String> getsecmList(String bianhao);
//	
//	
//	/**
//	 * 保存发货地区及发货地区与物流公司关系表
//	 * @param name  名称
//	 * @param bianhao 编号
//	 * @param jishu 层级
//	 * @param ismx 是否是明细
//	 * @param companyNos 物流公司编号
//	 * @return
//	 * @throws Exception
//	 */
//	public ObjectResult<Boolean> saveItem(String name,String bianhao,int jishu,String companyNos,boolean GLXJ)throws Exception;
//	
//	
//	/**
//	 * 删除发货地区
//	 * @param bianhao
//	 * @return
//	 * @throws Exception
//	 */
//	public ObjectResult<Boolean> delItem(String bianhao)throws Exception;

}