fit:修复bug,触发构建
This commit is contained in:
parent
ed9425b415
commit
e5f5dc3727
|
|
@ -22,7 +22,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<sql id="selectAirTypeGeneralEnumVo">
|
||||
select id, name, vendor_id, domain, type, sub_type, icon,
|
||||
create_by, create_time, update_by, update_time, remark
|
||||
from air_type_general_enum
|
||||
from device_air_type_general_enum
|
||||
</sql>
|
||||
|
||||
<select id="selectAirTypeGeneralEnumById" parameterType="Long" resultMap="AirTypeGeneralEnumResult">
|
||||
|
|
@ -52,7 +52,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</select>
|
||||
|
||||
<insert id="insertAirTypeGeneralEnum" parameterType="com.ruoyi.device.mapper.entity.AirTypeGeneralEnumEntity" useGeneratedKeys="true" keyProperty="id" keyColumn="id">
|
||||
insert into air_type_general_enum
|
||||
insert into device_air_type_general_enum
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="name != null and name != ''">name,</if>
|
||||
<if test="vendorId != null">vendor_id,</if>
|
||||
|
|
@ -78,7 +78,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</insert>
|
||||
|
||||
<update id="updateAirTypeGeneralEnum" parameterType="com.ruoyi.device.mapper.entity.AirTypeGeneralEnumEntity">
|
||||
update air_type_general_enum
|
||||
update device_air_type_general_enum
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="name != null and name != ''">name = #{name},</if>
|
||||
<if test="vendorId != null">vendor_id = #{vendorId},</if>
|
||||
|
|
@ -94,11 +94,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</update>
|
||||
|
||||
<delete id="deleteAirTypeGeneralEnumById" parameterType="Long">
|
||||
delete from air_type_general_enum where id = #{id}
|
||||
delete from device_air_type_general_enum where id = #{id}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteAirTypeGeneralEnumByIds" parameterType="Long">
|
||||
delete from air_type_general_enum where id in
|
||||
delete from device_air_type_general_enum where id in
|
||||
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||||
#{id}
|
||||
</foreach>
|
||||
|
|
|
|||
Loading…
Reference in New Issue