diff --git a/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsCostFeeSplitController.java b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsCostFeeSplitController.java index d79ed1d84..3bd83c966 100644 --- a/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsCostFeeSplitController.java +++ b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsCostFeeSplitController.java @@ -61,6 +61,15 @@ public class EmisTmsCostFeeSplitController extends BaseController } + @GetMapping("/listSimple") + public TableDataInfo listSimple(EmisTmsCostFeeSplit emisTmsCostFeeSplit) + { + startPage(); + List list = emisTmsCostFeeSplitService.selectEmisTmsCostFeeSplitList(emisTmsCostFeeSplit); + return getDataTable(list); + } + + /** * 检查是否重复 * diff --git a/emis-biz/src/main/resources/mapper/EmisTmsCostFeeSplitMapper.xml b/emis-biz/src/main/resources/mapper/EmisTmsCostFeeSplitMapper.xml index bb7e96d8b..70a721884 100644 --- a/emis-biz/src/main/resources/mapper/EmisTmsCostFeeSplitMapper.xml +++ b/emis-biz/src/main/resources/mapper/EmisTmsCostFeeSplitMapper.xml @@ -26,11 +26,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" del_flag='0' and id = #{id} - and cost_no like concat('%', #{costNo}, '%') + and cost_no=#{costNo} and fee_item_id = #{feeItemId} - and bill_code like concat('%', #{billCode}, '%') - and fee_type like concat('%', #{feeType}, '%') - and split_type like concat('%', #{splitType}, '%') + and bill_code=#{billCode} + and fee_type=#{feeType} + and split_type=#{splitType} and cost_fee = #{costFee} and total_volume = #{totalVolume} and bill_weight = #{billWeight}