手动结算订单

This commit is contained in:
2023-03-16 17:01:15 +08:00
parent d309b8a299
commit b95437486f
3 changed files with 16 additions and 9 deletions

View File

@@ -26,12 +26,10 @@
select
<include refid="Base_Column_List"/>
from member_plate_number_relation
<where>
<if test="memberId != null and memberId != ''"> and member_id = #{memberId}</if>
<if test="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</if>
<if test="licensePlateNumber != null and licensePlateNumber != ''"> and license_plate_number = #{licensePlateNumber}</if>
</where>
and del_flag = '0'
where del_flag = '0'
<if test="memberId != null and memberId != ''"> and member_id = #{memberId}</if>
<if test="phoneNumber != null and phoneNumber != ''"> and phone_number = #{phoneNumber}</if>
<if test="licensePlateNumber != null and licensePlateNumber != ''"> and license_plate_number = #{licensePlateNumber}</if>
</select>
<select id="selectMemberPlateNumberRelationById" parameterType="Integer" resultMap="MemberLicensePlateNumberRelationResult">