钱智封存功能
This commit is contained in:
parent
37e9e06c56
commit
d0d2d7b70d
|
|
@ -19,6 +19,7 @@
|
|||
<result column="update_time" property="updateTime"/>
|
||||
<result column="tenant_key" property="tenantKey"/>
|
||||
<result column="payment_organization" property="paymentOrganization"/>
|
||||
<result column="fc" property="fc"/>
|
||||
</resultMap>
|
||||
|
||||
<!-- 表字段 -->
|
||||
|
|
@ -42,6 +43,7 @@
|
|||
, t.update_time
|
||||
, t.tenant_key
|
||||
, t.payment_organization
|
||||
, t.fc
|
||||
</sql>
|
||||
|
||||
<insert id="insert" parameterType="com.engine.salary.entity.siaccount.po.InsuranceAccountBatchPO"
|
||||
|
|
@ -65,6 +67,7 @@
|
|||
update_time,
|
||||
tenant_key,
|
||||
payment_organization,
|
||||
fc,
|
||||
</trim>
|
||||
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
|
||||
#{billMonth},
|
||||
|
|
@ -83,6 +86,7 @@
|
|||
#{updateTime},
|
||||
#{tenantKey},
|
||||
#{paymentOrganization},
|
||||
#{fc},
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
|
@ -111,6 +115,7 @@
|
|||
update_time,
|
||||
tenant_key,
|
||||
payment_organization,
|
||||
fc,
|
||||
</trim>
|
||||
<trim prefix="VALUES (" suffix=")" suffixOverrides=",">
|
||||
#{billMonth},
|
||||
|
|
@ -129,6 +134,7 @@
|
|||
#{updateTime},
|
||||
#{tenantKey},
|
||||
#{paymentOrganization},
|
||||
#{fc},
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
|
|
@ -235,7 +241,10 @@
|
|||
other_pay=#{otherPay},
|
||||
</if>
|
||||
<if test="billStatus != null">
|
||||
bill_status=#{billStatus}
|
||||
bill_status=#{billStatus},
|
||||
</if>
|
||||
<if test="fc != null">
|
||||
fc=#{fc}
|
||||
</if>
|
||||
</set>
|
||||
WHERE id = #{id} AND delete_type = 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue