You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
423 B
18 lines
423 B
package com.dxhy.erp.dao;
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.dxhy.erp.entity.alltax.*;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author luxiaoxu
|
|
*/
|
|
@Mapper
|
|
public interface AllTaxesSaleRateDao extends BaseMapper<SaleInvoiceRateEntity> {
|
|
|
|
}
|
|
|