📄 hsduterateservice.java
字号:
/**
* =============================================
* Copyright 2006 szmx
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-4-21 ozhang Create com.szmx.framework.util.convert.ff
* =============================================
*/
package com.szmx.tlms.finance.service;
import com.szmx.framework.base.service.BaseService;
import com.szmx.framework.base.model.Pagination;
import com.szmx.tlms.finance.model.HsDuteRate;
import com.szmx.tlms.TlmsServiceException;
import java.util.Map;
public interface HsDuteRateService extends BaseService {
/**get hsDuteRates
*
* @param paginationObj
* @param paraMap param value
* searchBean searchBean
*
* @return
/ * @throws TlmsServiceException
*/
public Pagination getHsDuteRates(final Pagination paginationObj, final Map paraMap)throws TlmsServiceException;
/**
* get hsDutyRate by id
* @param id
* @return HsDuteRate
*/
public HsDuteRate getHsDuteRate(Long id);
/** save a hsDutyRate
*
* @param hsDuteRate
*/
public void save(HsDuteRate hsDuteRate);
/** save a hsDutyRate
*
* @param id
*/
public void removeAll(String[] id);
/**get hsDuteRates
*
* @param paginationObj
* @param paraMap param value
* compId compId
* gmn gmn
* outDate outDate
*
* @return
/ * @throws TlmsServiceException
*/
public Pagination DutyRateQurey(final Pagination paginationObj, final Map paraMap)throws TlmsServiceException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -