This commit is contained in:
linfso 2025-02-23 17:20:11 +08:00
parent 203367e107
commit 2bc22c6276
2 changed files with 13 additions and 4 deletions

View File

@ -61,6 +61,15 @@ public class EmisTmsCostFeeSplitController extends BaseController
}
@GetMapping("/listSimple")
public TableDataInfo listSimple(EmisTmsCostFeeSplit emisTmsCostFeeSplit)
{
startPage();
List<EmisTmsCostFeeSplit> list = emisTmsCostFeeSplitService.selectEmisTmsCostFeeSplitList(emisTmsCostFeeSplit);
return getDataTable(list);
}
/**
* 检查是否重复
*

View File

@ -26,11 +26,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<where>
del_flag='0'
<if test="id != null "> and id = #{id}</if>
<if test="costNo != null and costNo != ''"> and cost_no like concat('%', #{costNo}, '%')</if>
<if test="costNo != null and costNo != ''"> and cost_no=#{costNo}</if>
<if test="feeItemId != null "> and fee_item_id = #{feeItemId}</if>
<if test="billCode != null and billCode != ''"> and bill_code like concat('%', #{billCode}, '%')</if>
<if test="feeType != null and feeType != ''"> and fee_type like concat('%', #{feeType}, '%')</if>
<if test="splitType != null and splitType != ''"> and split_type like concat('%', #{splitType}, '%')</if>
<if test="billCode != null and billCode != ''"> and bill_code=#{billCode}</if>
<if test="feeType != null and feeType != ''"> and fee_type=#{feeType}</if>
<if test="splitType != null and splitType != ''"> and split_type=#{splitType}</if>
<if test="costFee != null "> and cost_fee = #{costFee}</if>
<if test="totalVolume != null "> and total_volume = #{totalVolume}</if>
<if test="billWeight != null "> and bill_weight = #{billWeight}</if>