devicesmgt/sgzb-modules/sgzb-base/src/main/resources/mapper/base/MaHouseSetMapper.xml

132 lines
6.0 KiB
XML
Raw Normal View History

2023-11-30 20:15:53 +08:00
<?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">
2023-12-08 09:51:56 +08:00
<mapper namespace="com.bonus.sgzb.base.mapper.MaHouseSetMapper">
2023-11-30 20:15:53 +08:00
2023-12-08 09:51:56 +08:00
<resultMap type="com.bonus.sgzb.base.damain.MaHouseSet" id="SysHouseSetResult">
2023-11-30 20:15:53 +08:00
<id property="houseId" column="house_id" />
<result property="typeId" column="type_id" />
<result property="maId" column="ma_id" />
<result property="num" column="num" />
<result property="status" column="status" />
<result property="deptId" column="dept_id" />
<result property="delFlag" column="del_flag" />
<result property="createBy" column="create_by" />
<result property="createTime" column="create_time" />
<result property="updateBy" column="update_by" />
<result property="updateTime" column="update_time" />
<result property="remark" column="remark" />
<result property="companyId" column="company_id" />
</resultMap>
<sql id="selectHouseSetVo">
select house_id, type_id, ma_id, num, status, dept_id, del_flag, create_by, create_time, update_by,update_time,remark,company_id
from ma_house_set
</sql>
2023-12-08 09:51:56 +08:00
<insert id="maHouseSetAdd" parameterType="com.bonus.sgzb.base.damain.MaHouseSet" >
2023-11-30 20:15:53 +08:00
insert into ma_house_set(
<if test="houseId != null and houseId != 0">house_id,</if>
<if test="typeId != null and typeId != ''">type_id,</if>
<if test="maId != null and maId != 0">ma_id,</if>
<if test="num != null and num != ''">num,</if>
<if test="status != null and status != 0">status,</if>
<if test="deptId != null and deptId != ''">dept_id,</if>
<if test="delFlag != null and delFlag != ''">del_flag,</if>
<if test="createBy != null and createBy != ''">create_by,</if>
<if test="updateBy != null and updateBy != ''">update_by,</if>
<if test="updateTime != null and updateTime != ''">update_time,</if>
<if test="remark != null and remark != ''">remark,</if>
<if test="companyId != null and companyId != ''">company_id,</if>
create_time
)values(
<if test="houseId != null and houseId != 0">#{houseId},</if>
<if test="typeId != null and typeId != ''">#{typeId},</if>
<if test="maId != null and maId != 0">#{maId},</if>
<if test="num != null and num != ''">#{num},</if>
<if test="status != null and status != 0">#{status},</if>
<if test="deptId != null and deptId != ''">#{deptId},</if>
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
<if test="updateBy != null and updateBy != ''">#{updateBy},</if>
<if test="updateTime != null and updateTime != ''">#{updateTime},</if>
<if test="companyId != null and companyId != ''">#{companyId},</if>
sysdate()
)
</insert>
<update id="updateHouseSet">
update ma_house_info
<set>
<if test="typeId != null and typeId != ''">type_id = #{typeId},</if>
<if test="maId != null and maId != ''">ma_id = #{maId},</if>
<if test="num != null and num != ''">num = #{num},</if>
<if test="status != null and status != ''">status = #{status},</if>
<if test="deptId != null and deptId != ''">dept_id = #{deptId},</if>
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
<if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
<if test="createTime != null and createTime != ''">create_time = #{createTime},</if>
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
<if test="remark != null and remark != ''">remark = #{remark},</if>
<if test="companyId != null and companyId != ''">company_id = #{companyId},</if>
update_time = sysdate()
</set>
where house_id = #{houseId}
</update>
<delete id="deleteHouseSetById" parameterType="Long">
update ma_house_set set del_flag = '2' where house_id = #{houseId}
</delete>
2023-12-08 09:51:56 +08:00
<select id="getHouseSetList" resultType="com.bonus.sgzb.base.damain.MaHouseSet">
2023-11-30 20:15:53 +08:00
select house_id, type_id, ma_id, num, status, dept_id, del_flag, create_by, create_time, update_by,update_time,remark,company_id
from ma_house_set
<where>
<if test="houseId != null and houseId != ''">
AND house_id = #{houseId}
</if>
<if test="typeId != null and typeId != ''">
AND type_id = #{typeId}
</if>
<if test="maId != null and maId != ''">
AND ma_id = #{maId}
</if>
<if test="num != null and num != ''">
AND num = #{num}
</if>
<if test="status != null and status != ''">
and status = #{status}
</if>
<if test="deptId != null and deptId != ''">
and dept_id = #{deptId}
</if>
<if test="delFlag != null and delFlag != ''">
and del_flag = #{delFlag}
</if>
<if test="createBy != null and createBy != ''">
and create_by = #{createBy}
</if>
<if test="createTime != null and createTime != ''">
and create_time = #{createTime}
</if>
<if test="updateBy != null and updateBy != ''">
and update_by = #{updateBy}
</if>
<if test="updateTime != null and updateTime != ''">
and update_time = #{updateTime}
</if>
<if test="remark != null and remark != ''">
and remark = #{remark}
</if>
<if test="companyId != null and companyId != ''">
and company_id = #{companyId}
</if>
</where>
</select>
</mapper>