JNBusiness/ruoyi-system/src/main/resources/mapper/customer/CustomerMapper.xml

169 lines
10 KiB
XML
Raw Normal View History

2024-03-25 14:26:31 +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">
<mapper namespace="com.ruoyi.customer.mapper.CustomerMapper">
2024-03-26 15:56:53 +08:00
2024-03-25 14:26:31 +08:00
<resultMap type="Customer" id="CustomerResult">
<result property="cusId" column="cus_id" />
<result property="cusCode" column="cus_code" />
<result property="cusName" column="cus_name" />
<result property="cusSapCode" column="cus_sap_code" />
<result property="cusStreet" column="cus_street" />
<result property="cusPaymentTerms" column="cus_payment_terms" />
<result property="cusPhoneNumber" column="cus_phone_number" />
<result property="cusIndustryCode" column="cus_industry_code" />
<result property="cusGroup" column="cus_group" />
<result property="cusVatNo" column="cus_vat_no" />
<result property="cusType" column="cus_type" />
<result property="cusCountry" column="cus_country" />
<result property="cusLanguage" column="cus_language" />
<result property="cusLabel" column="cus_label" />
<result property="cusClassification" column="cus_classification" />
<result property="cusReceivingEmail" column="cus_receiving_email" />
<result property="cusRecipient" column="cus_recipient" />
<result property="cusRecipientPhone" column="cus_recipient_phone" />
<result property="cusRemark" column="cus_remark" />
<result property="cusState" column="cus_state" />
<result property="cusApprovalStatus" column="cus_approval_status" />
</resultMap>
<resultMap id="CustomerBankResult" type="Customer" extends="CustomerResult">
<collection property="bankList" notNullColumn="sub_bank_id" javaType="java.util.List" resultMap="BankResult" />
</resultMap>
<resultMap type="Bank" id="BankResult">
<result property="bankId" column="sub_bank_id" />
<result property="bankName" column="sub_bank_name" />
<result property="bankAccount" column="sub_bank_account" />
<result property="cusId" column="sub_cus_id" />
</resultMap>
<sql id="selectCustomerVo">
select cus_id, cus_code, cus_name, cus_sap_code, cus_street, cus_payment_terms, cus_phone_number, cus_industry_code, cus_group, cus_vat_no, cus_type, cus_country, cus_language, cus_label, cus_classification, cus_receiving_email, cus_recipient, cus_recipient_phone, cus_remark, cus_state, cus_approval_status from customer
</sql>
<select id="selectCustomerList" parameterType="Customer" resultMap="CustomerResult">
<include refid="selectCustomerVo"/>
2024-03-26 15:56:53 +08:00
<where>
2024-03-25 14:26:31 +08:00
<if test="cusCode != null and cusCode != ''"> and cus_code like concat('%', #{cusCode}, '%')</if>
<if test="cusName != null and cusName != ''"> and cus_name like concat('%', #{cusName}, '%')</if>
<if test="cusSapCode != null and cusSapCode != ''"> and cus_sap_code like concat('%', #{cusSapCode}, '%')</if>
<if test="cusState != null and cusState != ''"> and cus_state = #{cusState}</if>
<if test="cusApprovalStatus != null and cusApprovalStatus != ''"> and cus_approval_status = #{cusApprovalStatus}</if>
</where>
</select>
2024-03-26 15:56:53 +08:00
2024-03-25 14:26:31 +08:00
<select id="selectCustomerByCusId" parameterType="Long" resultMap="CustomerBankResult">
select a.cus_id, a.cus_code, a.cus_name, a.cus_sap_code, a.cus_street, a.cus_payment_terms, a.cus_phone_number, a.cus_industry_code, a.cus_group, a.cus_vat_no, a.cus_type, a.cus_country, a.cus_language, a.cus_label, a.cus_classification, a.cus_receiving_email, a.cus_recipient, a.cus_recipient_phone, a.cus_remark, a.cus_state, a.cus_approval_status,
b.bank_id as sub_bank_id, b.bank_name as sub_bank_name, b.bank_account as sub_bank_account, b.cus_id as sub_cus_id
from customer a
left join bank b on b.cus_id = a.cus_id
where a.cus_id = #{cusId}
</select>
2024-03-26 15:56:53 +08:00
<insert id="insertCustomer" parameterType="Customer" useGeneratedKeys="true" keyProperty="cusId">
2024-03-25 14:26:31 +08:00
insert into customer
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="cusCode != null">cus_code,</if>
<if test="cusName != null and cusName != ''">cus_name,</if>
<if test="cusSapCode != null">cus_sap_code,</if>
<if test="cusStreet != null and cusStreet != ''">cus_street,</if>
<if test="cusPaymentTerms != null and cusPaymentTerms != ''">cus_payment_terms,</if>
<if test="cusPhoneNumber != null and cusPhoneNumber != ''">cus_phone_number,</if>
<if test="cusIndustryCode != null and cusIndustryCode != ''">cus_industry_code,</if>
<if test="cusGroup != null and cusGroup != ''">cus_group,</if>
<if test="cusVatNo != null and cusVatNo != ''">cus_vat_no,</if>
<if test="cusType != null">cus_type,</if>
<if test="cusCountry != null and cusCountry != ''">cus_country,</if>
<if test="cusLanguage != null and cusLanguage != ''">cus_language,</if>
<if test="cusLabel != null">cus_label,</if>
<if test="cusClassification != null">cus_classification,</if>
<if test="cusReceivingEmail != null">cus_receiving_email,</if>
<if test="cusRecipient != null">cus_recipient,</if>
<if test="cusRecipientPhone != null">cus_recipient_phone,</if>
<if test="cusRemark != null">cus_remark,</if>
<if test="cusState != null">cus_state,</if>
<if test="cusApprovalStatus != null">cus_approval_status,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="cusCode != null">#{cusCode},</if>
<if test="cusName != null and cusName != ''">#{cusName},</if>
<if test="cusSapCode != null">#{cusSapCode},</if>
<if test="cusStreet != null and cusStreet != ''">#{cusStreet},</if>
<if test="cusPaymentTerms != null and cusPaymentTerms != ''">#{cusPaymentTerms},</if>
<if test="cusPhoneNumber != null and cusPhoneNumber != ''">#{cusPhoneNumber},</if>
<if test="cusIndustryCode != null and cusIndustryCode != ''">#{cusIndustryCode},</if>
<if test="cusGroup != null and cusGroup != ''">#{cusGroup},</if>
<if test="cusVatNo != null and cusVatNo != ''">#{cusVatNo},</if>
<if test="cusType != null">#{cusType},</if>
<if test="cusCountry != null and cusCountry != ''">#{cusCountry},</if>
<if test="cusLanguage != null and cusLanguage != ''">#{cusLanguage},</if>
<if test="cusLabel != null">#{cusLabel},</if>
<if test="cusClassification != null">#{cusClassification},</if>
<if test="cusReceivingEmail != null">#{cusReceivingEmail},</if>
<if test="cusRecipient != null">#{cusRecipient},</if>
<if test="cusRecipientPhone != null">#{cusRecipientPhone},</if>
<if test="cusRemark != null">#{cusRemark},</if>
<if test="cusState != null">#{cusState},</if>
<if test="cusApprovalStatus != null">#{cusApprovalStatus},</if>
</trim>
</insert>
<update id="updateCustomer" parameterType="Customer">
update customer
<trim prefix="SET" suffixOverrides=",">
<if test="cusCode != null">cus_code = #{cusCode},</if>
<if test="cusName != null and cusName != ''">cus_name = #{cusName},</if>
<if test="cusSapCode != null">cus_sap_code = #{cusSapCode},</if>
<if test="cusStreet != null and cusStreet != ''">cus_street = #{cusStreet},</if>
<if test="cusPaymentTerms != null and cusPaymentTerms != ''">cus_payment_terms = #{cusPaymentTerms},</if>
<if test="cusPhoneNumber != null and cusPhoneNumber != ''">cus_phone_number = #{cusPhoneNumber},</if>
<if test="cusIndustryCode != null and cusIndustryCode != ''">cus_industry_code = #{cusIndustryCode},</if>
<if test="cusGroup != null and cusGroup != ''">cus_group = #{cusGroup},</if>
<if test="cusVatNo != null and cusVatNo != ''">cus_vat_no = #{cusVatNo},</if>
<if test="cusType != null">cus_type = #{cusType},</if>
<if test="cusCountry != null and cusCountry != ''">cus_country = #{cusCountry},</if>
<if test="cusLanguage != null and cusLanguage != ''">cus_language = #{cusLanguage},</if>
<if test="cusLabel != null">cus_label = #{cusLabel},</if>
<if test="cusClassification != null">cus_classification = #{cusClassification},</if>
<if test="cusReceivingEmail != null">cus_receiving_email = #{cusReceivingEmail},</if>
<if test="cusRecipient != null">cus_recipient = #{cusRecipient},</if>
<if test="cusRecipientPhone != null">cus_recipient_phone = #{cusRecipientPhone},</if>
<if test="cusRemark != null">cus_remark = #{cusRemark},</if>
<if test="cusState != null">cus_state = #{cusState},</if>
<if test="cusApprovalStatus != null">cus_approval_status = #{cusApprovalStatus},</if>
</trim>
where cus_id = #{cusId}
</update>
<delete id="deleteCustomerByCusId" parameterType="Long">
delete from customer where cus_id = #{cusId}
</delete>
<delete id="deleteCustomerByCusIds" parameterType="String">
2024-03-26 15:56:53 +08:00
delete from customer where cus_id in
2024-03-25 14:26:31 +08:00
<foreach item="cusId" collection="array" open="(" separator="," close=")">
#{cusId}
</foreach>
</delete>
2024-03-26 15:56:53 +08:00
2024-03-25 14:26:31 +08:00
<delete id="deleteBankByCusIds" parameterType="String">
2024-03-26 15:56:53 +08:00
delete from bank where cus_id in
2024-03-25 14:26:31 +08:00
<foreach item="cusId" collection="array" open="(" separator="," close=")">
#{cusId}
</foreach>
</delete>
<delete id="deleteBankByCusId" parameterType="Long">
delete from bank where cus_id = #{cusId}
</delete>
<insert id="batchBank">
2024-03-26 15:56:53 +08:00
insert into bank(bank_name, bank_account, cus_id) values
2024-03-25 14:26:31 +08:00
<foreach item="item" index="index" collection="list" separator=",">
2024-03-26 15:56:53 +08:00
( #{item.bankName}, #{item.bankAccount}, #{item.cusId})
2024-03-25 14:26:31 +08:00
</foreach>
</insert>
2024-03-26 15:56:53 +08:00
</mapper>