📄 condittaxservice.java
字号:
/**
* =============================================
* Copyright 2006 szmx
* <p/>
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-19 terry.zhang Create com.szmx.tlms.supplychain.web.ConditTaxAction
* =============================================
*/
package com.szmx.tlms.supplychain.service;
import com.szmx.framework.base.model.Pagination;
import com.szmx.framework.base.service.BaseService;
import com.szmx.tlms.supplychain.model.ConditTax;
import com.szmx.tlms.supplychain.dao.ConditTaxDAO;
import com.szmx.tlms.TlmsServiceException;
/**
*
* @author terry.zhang
* @since 2006-4-19
*/
public interface ConditTaxService extends BaseService {
/**
* This method used by IOC
* @param conditTaxDAO
*/
public void setConditTaxDAO(ConditTaxDAO conditTaxDAO);
/**
* This method used by IOC
* @param pageObj
* @param conditTax
* @return Pagination object
* @throws TlmsServiceException
*/
public Pagination getConditTaxs(Pagination pageObj, ConditTax conditTax)throws TlmsServiceException;
/**
* This method used by IOC
* @param id
* @return ConditTax object
* @throws TlmsServiceException
*/
public ConditTax getConditTax(String id)throws TlmsServiceException;
/**
* This method used by IOC
* @param conditTax
* @throws TlmsServiceException
*/
public void saveConditTax(ConditTax conditTax)throws TlmsServiceException;
/**
* This method used by IOC
* @param id
* @throws TlmsServiceException
*/
public void removeAllConditTax(String[] id)throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -