You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
8.2 KiB
141 lines
8.2 KiB
1 year ago
|
<?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.lzbi.bi.mapper.DcBusiTargetAdjustMapper">
|
||
|
|
||
|
<resultMap type="DcBusiTargetAdjust" id="DcBusiTargetAdjustResult">
|
||
|
<result property="tenantId" column="TENANT_ID" />
|
||
|
<result property="REVISION" column="REVISION" />
|
||
|
<result property="createdBy" column="CREATED_BY" />
|
||
|
<result property="createdTime" column="CREATED_TIME" />
|
||
|
<result property="updatedBy" column="UPDATED_BY" />
|
||
|
<result property="updatedTime" column="UPDATED_TIME" />
|
||
|
<result property="deleteBy" column="DELETE_BY" />
|
||
|
<result property="deleteTime" column="DELETE_TIME" />
|
||
|
<result property="billSerial" column="bill_serial" />
|
||
|
<result property="biilType" column="biil_type" />
|
||
|
<result property="targetCode" column="target_code" />
|
||
|
<result property="assetId" column="asset_id" />
|
||
|
<result property="valOrginal" column="val_orginal" />
|
||
|
<result property="valAdjust" column="val_adjust" />
|
||
|
<result property="valResult" column="val_result" />
|
||
|
<result property="id" column="id" />
|
||
|
<result property="dateAdjust" column="date_adjust" />
|
||
|
<result property="hourAdjust" column="hour_adjust" />
|
||
|
<result property="dateAdjustStr" column="date_adjust_str" />
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="selectDcBusiTargetAdjustVo">
|
||
|
select TENANT_ID, REVISION, CREATED_BY, CREATED_TIME, UPDATED_BY, UPDATED_TIME, DELETE_BY, DELETE_TIME, bill_serial, biil_type, target_code, asset_id, val_orginal, val_adjust, val_result, id, date_adjust, hour_adjust, date_adjust_str from dc_busi_target_adjust
|
||
|
</sql>
|
||
|
|
||
|
<select id="selectDcBusiTargetAdjustList" parameterType="DcBusiTargetAdjust" resultMap="DcBusiTargetAdjustResult">
|
||
|
<include refid="selectDcBusiTargetAdjustVo"/>
|
||
|
<where>
|
||
|
<if test="tenantId != null and tenantId != ''"> and TENANT_ID = #{tenantId}</if>
|
||
|
<if test="REVISION != null "> and REVISION = #{REVISION}</if>
|
||
|
<if test="createdBy != null and createdBy != ''"> and CREATED_BY = #{createdBy}</if>
|
||
|
<if test="createdTime != null "> and CREATED_TIME = #{createdTime}</if>
|
||
|
<if test="updatedBy != null and updatedBy != ''"> and UPDATED_BY = #{updatedBy}</if>
|
||
|
<if test="updatedTime != null "> and UPDATED_TIME = #{updatedTime}</if>
|
||
|
<if test="deleteBy != null and deleteBy != ''"> and DELETE_BY = #{deleteBy}</if>
|
||
|
<if test="deleteTime != null "> and DELETE_TIME = #{deleteTime}</if>
|
||
|
<if test="billSerial != null and billSerial != ''"> and bill_serial = #{billSerial}</if>
|
||
|
<if test="biilType != null and biilType != ''"> and biil_type = #{biilType}</if>
|
||
|
<if test="targetCode != null and targetCode != ''"> and target_code = #{targetCode}</if>
|
||
|
<if test="assetId != null "> and asset_id = #{assetId}</if>
|
||
|
<if test="valOrginal != null "> and val_orginal = #{valOrginal}</if>
|
||
|
<if test="valAdjust != null "> and val_adjust = #{valAdjust}</if>
|
||
|
<if test="valResult != null "> and val_result = #{valResult}</if>
|
||
|
<if test="dateAdjust != null "> and date_adjust = #{dateAdjust}</if>
|
||
|
<if test="hourAdjust != null and hourAdjust != ''"> and hour_adjust = #{hourAdjust}</if>
|
||
|
<if test="dateAdjustStr != null and dateAdjustStr != ''"> and date_adjust_str = #{dateAdjustStr}</if>
|
||
|
</where>
|
||
|
</select>
|
||
|
|
||
|
<select id="selectDcBusiTargetAdjustById" parameterType="Long" resultMap="DcBusiTargetAdjustResult">
|
||
|
<include refid="selectDcBusiTargetAdjustVo"/>
|
||
|
where id = #{id}
|
||
|
</select>
|
||
|
|
||
|
<insert id="insertDcBusiTargetAdjust" parameterType="DcBusiTargetAdjust" useGeneratedKeys="true" keyProperty="id">
|
||
|
insert into dc_busi_target_adjust
|
||
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||
|
<if test="tenantId != null">TENANT_ID,</if>
|
||
|
<if test="REVISION != null">REVISION,</if>
|
||
|
<if test="createdBy != null">CREATED_BY,</if>
|
||
|
<if test="createdTime != null">CREATED_TIME,</if>
|
||
|
<if test="updatedBy != null">UPDATED_BY,</if>
|
||
|
<if test="updatedTime != null">UPDATED_TIME,</if>
|
||
|
<if test="deleteBy != null">DELETE_BY,</if>
|
||
|
<if test="deleteTime != null">DELETE_TIME,</if>
|
||
|
<if test="billSerial != null">bill_serial,</if>
|
||
|
<if test="biilType != null">biil_type,</if>
|
||
|
<if test="targetCode != null">target_code,</if>
|
||
|
<if test="assetId != null">asset_id,</if>
|
||
|
<if test="valOrginal != null">val_orginal,</if>
|
||
|
<if test="valAdjust != null">val_adjust,</if>
|
||
|
<if test="valResult != null">val_result,</if>
|
||
|
<if test="dateAdjust != null">date_adjust,</if>
|
||
|
<if test="hourAdjust != null">hour_adjust,</if>
|
||
|
<if test="dateAdjustStr != null">date_adjust_str,</if>
|
||
|
</trim>
|
||
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||
|
<if test="tenantId != null">#{tenantId},</if>
|
||
|
<if test="REVISION != null">#{REVISION},</if>
|
||
|
<if test="createdBy != null">#{createdBy},</if>
|
||
|
<if test="createdTime != null">#{createdTime},</if>
|
||
|
<if test="updatedBy != null">#{updatedBy},</if>
|
||
|
<if test="updatedTime != null">#{updatedTime},</if>
|
||
|
<if test="deleteBy != null">#{deleteBy},</if>
|
||
|
<if test="deleteTime != null">#{deleteTime},</if>
|
||
|
<if test="billSerial != null">#{billSerial},</if>
|
||
|
<if test="biilType != null">#{biilType},</if>
|
||
|
<if test="targetCode != null">#{targetCode},</if>
|
||
|
<if test="assetId != null">#{assetId},</if>
|
||
|
<if test="valOrginal != null">#{valOrginal},</if>
|
||
|
<if test="valAdjust != null">#{valAdjust},</if>
|
||
|
<if test="valResult != null">#{valResult},</if>
|
||
|
<if test="dateAdjust != null">#{dateAdjust},</if>
|
||
|
<if test="hourAdjust != null">#{hourAdjust},</if>
|
||
|
<if test="dateAdjustStr != null">#{dateAdjustStr},</if>
|
||
|
</trim>
|
||
|
</insert>
|
||
|
|
||
|
<update id="updateDcBusiTargetAdjust" parameterType="DcBusiTargetAdjust">
|
||
|
update dc_busi_target_adjust
|
||
|
<trim prefix="SET" suffixOverrides=",">
|
||
|
<if test="tenantId != null">TENANT_ID = #{tenantId},</if>
|
||
|
<if test="REVISION != null">REVISION = #{REVISION},</if>
|
||
|
<if test="createdBy != null">CREATED_BY = #{createdBy},</if>
|
||
|
<if test="createdTime != null">CREATED_TIME = #{createdTime},</if>
|
||
|
<if test="updatedBy != null">UPDATED_BY = #{updatedBy},</if>
|
||
|
<if test="updatedTime != null">UPDATED_TIME = #{updatedTime},</if>
|
||
|
<if test="deleteBy != null">DELETE_BY = #{deleteBy},</if>
|
||
|
<if test="deleteTime != null">DELETE_TIME = #{deleteTime},</if>
|
||
|
<if test="billSerial != null">bill_serial = #{billSerial},</if>
|
||
|
<if test="biilType != null">biil_type = #{biilType},</if>
|
||
|
<if test="targetCode != null">target_code = #{targetCode},</if>
|
||
|
<if test="assetId != null">asset_id = #{assetId},</if>
|
||
|
<if test="valOrginal != null">val_orginal = #{valOrginal},</if>
|
||
|
<if test="valAdjust != null">val_adjust = #{valAdjust},</if>
|
||
|
<if test="valResult != null">val_result = #{valResult},</if>
|
||
|
<if test="dateAdjust != null">date_adjust = #{dateAdjust},</if>
|
||
|
<if test="hourAdjust != null">hour_adjust = #{hourAdjust},</if>
|
||
|
<if test="dateAdjustStr != null">date_adjust_str = #{dateAdjustStr},</if>
|
||
|
</trim>
|
||
|
where id = #{id}
|
||
|
</update>
|
||
|
|
||
|
<delete id="deleteDcBusiTargetAdjustById" parameterType="Long">
|
||
|
delete from dc_busi_target_adjust where id = #{id}
|
||
|
</delete>
|
||
|
|
||
|
<delete id="deleteDcBusiTargetAdjustByIds" parameterType="String">
|
||
|
delete from dc_busi_target_adjust where id in
|
||
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
||
|
#{id}
|
||
|
</foreach>
|
||
|
</delete>
|
||
|
</mapper>
|