169 lines
9.1 KiB
XML
169 lines
9.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE mapper
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.ruoyi.system.mapper.EtFeeRuleMapper">
|
|
|
|
<resultMap type="EtFeeRule" id="EtFeeRuleResult">
|
|
<result property="ruleId" column="rule_id" />
|
|
<result property="areaId" column="area_id" />
|
|
<result property="deptId" column="dept_id" />
|
|
<result property="deptName" column="dept_name" />
|
|
<result property="name" column="name" />
|
|
<result property="explain" column="explain" />
|
|
<result property="status" column="status" />
|
|
<result property="autoRefundDeposit" column="auto_refund_deposit" />
|
|
<result property="orderExceedMinutes" column="order_exceed_minutes" />
|
|
<result property="orderExceedWarn" column="order_exceed_warn" />
|
|
<result property="freeRideTime" column="free_ride_time" />
|
|
<result property="rentalUnit" column="rental_unit" />
|
|
<result property="ridingRule" column="riding_rule" />
|
|
<result property="ridingRuleJson" column="riding_rule_json" />
|
|
<result property="chargingCycle" column="charging_cycle" />
|
|
<result property="chargingCycleValue" column="charging_cycle_value" />
|
|
<result property="cappedAmount" column="capped_amount" />
|
|
<result property="instructions" column="instructions" />
|
|
<result property="createBy" column="create_by" />
|
|
<result property="createTime" column="create_time" />
|
|
<result property="isDeleted" column="is_deleted" />
|
|
</resultMap>
|
|
|
|
<sql id="selectEtFeeRuleVo">
|
|
select rule_id, dept_id, dept_id, `name`, `explain`,
|
|
status, auto_refund_deposit, order_exceed_minutes, order_exceed_warn,
|
|
free_ride_time, rental_unit, riding_rule, riding_rule_json, charging_cycle, charging_cycle_value,
|
|
capped_amount, instructions, create_by, create_time from et_fee_rule
|
|
</sql>
|
|
|
|
<select id="selectEtFeeRuleList" parameterType="EtFeeRule" resultMap="EtFeeRuleResult">
|
|
select r.rule_id, r.dept_id, d.dept_name, r.`name`, r.`explain`,
|
|
r.status, r.auto_refund_deposit, r.order_exceed_minutes, r.order_exceed_warn,
|
|
r.free_ride_time, r.rental_unit, r.riding_rule, r.riding_rule_json, r.charging_cycle, r.charging_cycle_value,
|
|
r.capped_amount, r.instructions, r.create_by, r.create_time from et_fee_rule r
|
|
left join sys_dept d on d.dept_id = r.dept_id
|
|
where r.is_deleted = 0
|
|
<if test="name != null and name != ''"> and r.`name` like concat('%', #{name}, '%')</if>
|
|
<if test="status != null and status != ''"> and r.status = #{status}</if>
|
|
<if test="deptId != null "> and r.dept_id = #{deptId}</if>
|
|
<!-- 数据范围过滤 -->
|
|
${params.dataScope}
|
|
</select>
|
|
|
|
<select id="selectEtFeeRuleByRuleId" parameterType="Long" resultMap="EtFeeRuleResult">
|
|
<include refid="selectEtFeeRuleVo"/>
|
|
where is_deleted = 0 rule_id = #{ruleId}
|
|
</select>
|
|
|
|
<select id="selectEtFeeRuleByRuleIdIncludeDelete" parameterType="Long" resultMap="EtFeeRuleResult">
|
|
<include refid="selectEtFeeRuleVo"/>
|
|
where rule_id = #{ruleId}
|
|
</select>
|
|
|
|
<select id="selectRuleListByAreaId" parameterType="Long" resultType="Long">
|
|
select r.rule_id
|
|
from et_fee_rule r
|
|
left join et_area_rule ar on ar.rule_id = r.rule_id
|
|
left join et_operating_area a on a.area_id = ar.area_id
|
|
where r.is_deleted = 0 and a.area_id = #{areaId}
|
|
</select>
|
|
|
|
<select id="selectRuleInfoListByAreaId" parameterType="Long" resultMap="EtFeeRuleResult">
|
|
select r.rule_id, r.`dept_id`, r.`name`, r.`explain`,
|
|
r.status, r.auto_refund_deposit, r.order_exceed_minutes, r.order_exceed_warn,
|
|
r.free_ride_time, r.rental_unit, r.riding_rule, r.riding_rule_json, r.charging_cycle, r.charging_cycle_value,
|
|
r.capped_amount, r.instructions, r.create_by, r.create_time
|
|
from et_fee_rule r
|
|
left join et_area_rule ar on ar.rule_id = r.rule_id
|
|
left join et_operating_area a on a.area_id = ar.area_id
|
|
where r.is_deleted = 0 and a.area_id = #{areaId}
|
|
</select>
|
|
|
|
<select id="selectRuleNameListByAreaId" parameterType="Long" resultType="java.lang.String">
|
|
select r.`name`
|
|
from et_fee_rule r
|
|
left join et_area_rule ar on ar.rule_id = r.rule_id
|
|
left join et_operating_area a on a.area_id = ar.area_id
|
|
where r.is_deleted = 0 and a.area_id = #{areaId}
|
|
</select>
|
|
|
|
<insert id="insertEtFeeRule" parameterType="EtFeeRule" useGeneratedKeys="true" keyProperty="ruleId">
|
|
insert into et_fee_rule
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">`name`,</if>
|
|
<if test="deptId != null">dept_id,</if>
|
|
<if test="explain != null">`explain`,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="autoRefundDeposit != null">auto_refund_deposit,</if>
|
|
<if test="orderExceedMinutes != null">order_exceed_minutes,</if>
|
|
<if test="orderExceedWarn != null">order_exceed_warn,</if>
|
|
<if test="freeRideTime != null">free_ride_time,</if>
|
|
<if test="rentalUnit != null">rental_unit,</if>
|
|
<if test="ridingRule != null">riding_rule,</if>
|
|
<if test="ridingRuleJson != null">riding_rule_json,</if>
|
|
<if test="chargingCycle != null">charging_cycle,</if>
|
|
<if test="chargingCycleValue != null">charging_cycle_value,</if>
|
|
<if test="cappedAmount != null">capped_amount,</if>
|
|
<if test="instructions != null">instructions,</if>
|
|
<if test="createBy != null">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="name != null">#{name},</if>
|
|
<if test="deptId != null">#{deptId},</if>
|
|
<if test="explain != null">#{explain},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="autoRefundDeposit != null">#{autoRefundDeposit},</if>
|
|
<if test="orderExceedMinutes != null">#{orderExceedMinutes},</if>
|
|
<if test="orderExceedWarn != null">#{orderExceedWarn},</if>
|
|
<if test="freeRideTime != null">#{freeRideTime},</if>
|
|
<if test="rentalUnit != null">#{rentalUnit},</if>
|
|
<if test="ridingRule != null">#{ridingRule},</if>
|
|
<if test="ridingRuleJson != null">#{ridingRuleJson},</if>
|
|
<if test="chargingCycle != null">#{chargingCycle},</if>
|
|
<if test="chargingCycleValue != null">#{chargingCycleValue},</if>
|
|
<if test="cappedAmount != null">#{cappedAmount},</if>
|
|
<if test="instructions != null">#{instructions},</if>
|
|
<if test="createBy != null">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateEtFeeRule" parameterType="EtFeeRule">
|
|
update et_fee_rule
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="name != null">`name` = #{name},</if>
|
|
<if test="deptId != null">dept_id = #{deptId},</if>
|
|
<if test="explain != null">`explain` = #{explain},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="autoRefundDeposit != null">auto_refund_deposit = #{autoRefundDeposit},</if>
|
|
<if test="orderExceedMinutes != null">order_exceed_minutes = #{orderExceedMinutes},</if>
|
|
<if test="orderExceedWarn != null">order_exceed_warn = #{orderExceedWarn},</if>
|
|
<if test="freeRideTime != null">free_ride_time = #{freeRideTime},</if>
|
|
<if test="rentalUnit != null">rental_unit = #{rentalUnit},</if>
|
|
<if test="ridingRule != null">riding_rule = #{ridingRule},</if>
|
|
<if test="ridingRuleJson != null">riding_rule_json = #{ridingRuleJson},</if>
|
|
<if test="chargingCycle != null">charging_cycle = #{chargingCycle},</if>
|
|
<if test="chargingCycleValue != null">charging_cycle_value = #{chargingCycleValue},</if>
|
|
<if test="cappedAmount != null">capped_amount = #{cappedAmount},</if>
|
|
<if test="instructions != null">instructions = #{instructions},</if>
|
|
<if test="createBy != null">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
</trim>
|
|
where rule_id = #{ruleId}
|
|
</update>
|
|
|
|
<delete id="deleteEtFeeRuleByRuleId" parameterType="Long">
|
|
delete from et_fee_rule where rule_id = #{ruleId}
|
|
</delete>
|
|
|
|
<update id="deleteEtFeeRuleByRuleIds" parameterType="String">
|
|
update et_fee_rule
|
|
set is_deleted = 1
|
|
where rule_id in
|
|
<foreach item="ruleId" collection="array" open="(" separator="," close=")">
|
|
#{ruleId}
|
|
</foreach>
|
|
</update>
|
|
|
|
</mapper>
|