2025-03-10 15:31:33 +08:00
|
|
|
package com.engine.salary.service;
|
|
|
|
|
|
2025-03-12 13:55:59 +08:00
|
|
|
import com.engine.salary.component.PageInfo;
|
|
|
|
|
import com.engine.salary.entity.deductionamount.dto.DeductionAmountDTO;
|
2025-03-14 15:56:28 +08:00
|
|
|
import com.engine.salary.entity.deductionamount.param.*;
|
2025-03-10 15:31:33 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 年收入不足6万元的纳税人暂不预扣预缴税款扣除名单
|
|
|
|
|
* <p>Copyright: Copyright (c) 2023</p>
|
|
|
|
|
* <p>Company: 泛微软件</p>
|
|
|
|
|
*
|
|
|
|
|
* @author qiantao
|
|
|
|
|
* @version 1.0
|
|
|
|
|
**/
|
|
|
|
|
public interface DeductionAmountService {
|
|
|
|
|
|
2025-03-12 13:55:59 +08:00
|
|
|
PageInfo<DeductionAmountDTO> list(DeductionAmountListParam param);
|
2025-03-10 15:31:33 +08:00
|
|
|
|
|
|
|
|
void add(DeductionAmountAddParam param);
|
2025-03-12 13:55:59 +08:00
|
|
|
|
2025-03-14 15:56:28 +08:00
|
|
|
void delete(DeductionAmountDeleteParam param);
|
|
|
|
|
|
2025-03-12 13:55:59 +08:00
|
|
|
Object query(DeductionAmountOnlineQueryParam param);
|
|
|
|
|
|
|
|
|
|
Object confirm(DeductionAmountConfirmParam param);
|
|
|
|
|
|
2025-03-17 18:59:16 +08:00
|
|
|
void feedback(DeductionAmountFeedBackParam param);
|
2025-03-10 15:31:33 +08:00
|
|
|
}
|