|
@ -5,34 +5,35 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<mapper namespace="com.ruoyi.financial.mapper.FinancialReceivablesMapper"> |
|
|
<mapper namespace="com.ruoyi.financial.mapper.FinancialReceivablesMapper"> |
|
|
|
|
|
|
|
|
<resultMap type="FinancialReceivables" id="FinancialReceivablesResult"> |
|
|
<resultMap type="FinancialReceivables" id="FinancialReceivablesResult"> |
|
|
<result property="financialReceivablesId" column="financial_receivables_id" /> |
|
|
<result property="financialReceivablesId" column="financial_receivables_id" /> |
|
|
<result property="financialReceivablesCode" column="financial_receivables_code" /> |
|
|
<result property="financialReceivablesCode" column="financial_receivables_code" /> |
|
|
<result property="receivablesClosingStatus" column="receivables_closing_status" /> |
|
|
<result property="receivablesClosingStatus" column="receivables_closing_status" /> |
|
|
<result property="salesOrderCode" column="sales_order_code" /> |
|
|
<result property="salesOrderCode" column="sales_order_code" /> |
|
|
<result property="creditAccount" column="credit_account" /> |
|
|
<result property="debitAccount" column="debit_account" /> |
|
|
<result property="creditDetail" column="credit_detail" /> |
|
|
<result property="creditAccount" column="credit_account" /> |
|
|
<result property="openBank" column="open_bank" /> |
|
|
<result property="creditDetail" column="credit_detail" /> |
|
|
<result property="openAccount" column="open_account" /> |
|
|
<result property="openBank" column="open_bank" /> |
|
|
<result property="customerId" column="customer_id" /> |
|
|
<result property="openAccount" column="open_account" /> |
|
|
<result property="customerName" column="customer_name" /> |
|
|
<result property="customerId" column="customer_id" /> |
|
|
<result property="contractNumber" column="contract_number" /> |
|
|
<result property="customerName" column="customer_name" /> |
|
|
<result property="currencyType" column="currency_type" /> |
|
|
<result property="contractNumber" column="contract_number" /> |
|
|
<result property="priceExcludingTax" column="price_excluding_tax" /> |
|
|
<result property="currencyType" column="currency_type" /> |
|
|
<result property="priceIncludesTax" column="price_includes_tax" /> |
|
|
<result property="priceExcludingTax" column="price_excluding_tax" /> |
|
|
<result property="paymentCondition" column="payment_condition" /> |
|
|
<result property="priceIncludesTax" column="price_includes_tax" /> |
|
|
<result property="receivedIncludesTax" column="received_includes_tax" /> |
|
|
<result property="paymentCondition" column="payment_condition" /> |
|
|
<result property="notReceivedIncludesTax" column="not_received_includes_tax" /> |
|
|
<result property="receivedIncludesTax" column="received_includes_tax" /> |
|
|
<result property="businessMembers" column="business_members" /> |
|
|
<result property="notReceivedIncludesTax" column="not_received_includes_tax" /> |
|
|
<result property="financialDeliverStatus" column="financial_deliver_status" /> |
|
|
<result property="businessMembers" column="business_members" /> |
|
|
<result property="receivablesDate" column="receivables_date" /> |
|
|
<result property="financialDeliverStatus" column="financial_deliver_status" /> |
|
|
<result property="receivablesPrice" column="receivables_price" /> |
|
|
<result property="receivablesDate" column="receivables_date" /> |
|
|
<result property="receivablesAbstract" column="receivables_abstract" /> |
|
|
<result property="receivablesPrice" column="receivables_price" /> |
|
|
<result property="operatingTime" column="operating_time" /> |
|
|
<result property="receivablesAbstract" column="receivables_abstract" /> |
|
|
<result property="receivablesRemark" column="receivables_remark" /> |
|
|
<result property="operatingTime" column="operating_time" /> |
|
|
<result property="createTime" column="create_time" /> |
|
|
<result property="receivablesRemark" column="receivables_remark" /> |
|
|
<result property="createBy" column="create_by" /> |
|
|
<result property="createTime" column="create_time" /> |
|
|
<result property="updateBy" column="update_by" /> |
|
|
<result property="createBy" column="create_by" /> |
|
|
<result property="updateTime" column="update_time" /> |
|
|
<result property="updateBy" column="update_by" /> |
|
|
|
|
|
<result property="updateTime" column="update_time" /> |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
|
|
|
|
|
|
<sql id="selectFinancialReceivablesVo"> |
|
|
<sql id="selectFinancialReceivablesVo"> |
|
@ -70,6 +71,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="financialReceivablesCode != null">financial_receivables_code,</if> |
|
|
<if test="financialReceivablesCode != null">financial_receivables_code,</if> |
|
|
<if test="receivablesClosingStatus != null">receivables_closing_status,</if> |
|
|
<if test="receivablesClosingStatus != null">receivables_closing_status,</if> |
|
|
<if test="salesOrderCode != null">sales_order_code,</if> |
|
|
<if test="salesOrderCode != null">sales_order_code,</if> |
|
|
|
|
|
<if test="creditAccount != null">debit_account,</if> |
|
|
<if test="creditAccount != null">credit_account,</if> |
|
|
<if test="creditAccount != null">credit_account,</if> |
|
|
<if test="creditDetail != null">credit_detail,</if> |
|
|
<if test="creditDetail != null">credit_detail,</if> |
|
|
<if test="openBank != null">open_bank,</if> |
|
|
<if test="openBank != null">open_bank,</if> |
|
@ -99,6 +101,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="financialReceivablesCode != null">#{financialReceivablesCode},</if> |
|
|
<if test="financialReceivablesCode != null">#{financialReceivablesCode},</if> |
|
|
<if test="receivablesClosingStatus != null">#{receivablesClosingStatus},</if> |
|
|
<if test="receivablesClosingStatus != null">#{receivablesClosingStatus},</if> |
|
|
<if test="salesOrderCode != null">#{salesOrderCode},</if> |
|
|
<if test="salesOrderCode != null">#{salesOrderCode},</if> |
|
|
|
|
|
<if test="creditAccount != null">#{debitAccount},</if> |
|
|
<if test="creditAccount != null">#{creditAccount},</if> |
|
|
<if test="creditAccount != null">#{creditAccount},</if> |
|
|
<if test="creditDetail != null">#{creditDetail},</if> |
|
|
<if test="creditDetail != null">#{creditDetail},</if> |
|
|
<if test="openBank != null">#{openBank},</if> |
|
|
<if test="openBank != null">#{openBank},</if> |
|
@ -132,6 +135,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" |
|
|
<if test="financialReceivablesCode != null">financial_receivables_code = #{financialReceivablesCode},</if> |
|
|
<if test="financialReceivablesCode != null">financial_receivables_code = #{financialReceivablesCode},</if> |
|
|
<if test="receivablesClosingStatus != null">receivables_closing_status = #{receivablesClosingStatus},</if> |
|
|
<if test="receivablesClosingStatus != null">receivables_closing_status = #{receivablesClosingStatus},</if> |
|
|
<if test="salesOrderCode != null">sales_order_code = #{salesOrderCode},</if> |
|
|
<if test="salesOrderCode != null">sales_order_code = #{salesOrderCode},</if> |
|
|
|
|
|
<if test="creditAccount != null">debit_account = #{debitAccount},</if> |
|
|
<if test="creditAccount != null">credit_account = #{creditAccount},</if> |
|
|
<if test="creditAccount != null">credit_account = #{creditAccount},</if> |
|
|
<if test="creditDetail != null">credit_detail = #{creditDetail},</if> |
|
|
<if test="creditDetail != null">credit_detail = #{creditDetail},</if> |
|
|
<if test="openBank != null">open_bank = #{openBank},</if> |
|
|
<if test="openBank != null">open_bank = #{openBank},</if> |
|
|