md
This commit is contained in:
parent
203367e107
commit
2bc22c6276
@ -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);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 检查是否重复
|
||||
*
|
||||
|
||||
@ -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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user