📄 bussinesstypeservice.java
字号:
package com.szmx.tlms.admin.service;
import com.szmx.framework.base.service.BaseService;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.TlmsServiceException;
import com.szmx.tlms.admin.model.BussinessType;
/**
* Created by IntelliJ IDEA.
* User: tan
* Date: 2006-7-26
* Time: 11:02:18
* To change this template use File | Settings | File Templates.
*/
public interface BussinessTypeService extends BaseService {
// BussinessType service methods begin: ----------------------------------------
/**
* This method is for admin to search BussinessType based on
* search criteria with pagination and sort.
*
* @param pagination (the pagination object)
* @param bussinessType (Map) [should contains properties]
* bussinessID : Long
* busSpecies : String
* prefixContract : String
* busInstroction : String
* @return BussinessType list for search result
* @throws com.szmx.tlms.TlmsServiceException
*
*/
public Pagination searchBussinessTypes(final Pagination pagination,
final BussinessType bussinessType) throws TlmsServiceException;
/**
* This method is for admin to get the BussinessType based on special Long id.
*
* @param id (the physic id of the BussinessType : Long)
* @return BussinessType object for search result
* @throws TlmsServiceException
*/
public BussinessType getBussinessType(Long id) throws TlmsServiceException;
/**
* This method is for admin to save the BussinessType based on special BussinessType object.
*
* @param bussinessType (contains context to save, need not id, created & updated info)
* @throws TlmsServiceException
*/
public void saveBussinessType(BussinessType bussinessType) throws TlmsServiceException;
/**
* This method is for admin to update the BussinessType based on special BussinessType object.
*
* @param bussinessType (contains context to save, need not updated info)
* @throws TlmsServiceException
*/
public void updateBussinessType(BussinessType bussinessType) throws TlmsServiceException;
/**
* This method is for admin to remove the BussinessTypes based on checked BussinessType.
*
* @param ids (the array of selected BussinessType physic id, string value.)
* @param userId (logined user physic id, Long value)
* @throws TlmsServiceException
*/
public void removeBussinessTypes(String[] ids, Long userId) throws TlmsServiceException;
// BussinessType service methods end: ----------------------------------------
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -