|
@@ -86,7 +86,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="settlementAgreementFileName" column="settlement_agreement_file_name" />
|
|
<result property="settlementAgreementFileName" column="settlement_agreement_file_name" />
|
|
|
<result property="qualityAssuranceAgreementFileName" column="quality_assurance_agreement_fileName" />
|
|
<result property="qualityAssuranceAgreementFileName" column="quality_assurance_agreement_fileName" />
|
|
|
<result property="otherSpecialQualificationFileName" column="other_special_qualification_fileName" />
|
|
<result property="otherSpecialQualificationFileName" column="other_special_qualification_fileName" />
|
|
|
-
|
|
|
|
|
|
|
+ <result property="medicalDevice2BusinessScope" column="medical_device2_business_scope" />
|
|
|
|
|
+ <result property="medicalDevice3BusinessScope" column="medical_device3_business_scope" />
|
|
|
</resultMap>
|
|
</resultMap>
|
|
|
|
|
|
|
|
<sql id="selectFsStoreVo">
|
|
<sql id="selectFsStoreVo">
|
|
@@ -105,7 +106,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
quality_assurance_agreement_code,settlement_agreement_code,is_medical_device1_expiry_permanent,
|
|
quality_assurance_agreement_code,settlement_agreement_code,is_medical_device1_expiry_permanent,
|
|
|
is_drug_license_permanent,is_medical_device2_expiry_permanent,is_medical_device3_expiry_permanent,is_food_license_expiry_permanent,is_medical_license_expiry_permanent,
|
|
is_drug_license_permanent,is_medical_device2_expiry_permanent,is_medical_device3_expiry_permanent,is_food_license_expiry_permanent,is_medical_license_expiry_permanent,
|
|
|
title_Name_one,title_Name_two,title_Name_three,settlement_agreement_file_name,quality_assurance_agreement_fileName,other_special_qualification_fileName,
|
|
title_Name_one,title_Name_two,title_Name_three,settlement_agreement_file_name,quality_assurance_agreement_fileName,other_special_qualification_fileName,
|
|
|
- is_effective_permanent1,is_effective_permanent2,is_effective_permanent3
|
|
|
|
|
|
|
+ is_effective_permanent1,is_effective_permanent2,is_effective_permanent3,medical_device2_business_scope,medical_device3_business_scope
|
|
|
from fs_store_scrm
|
|
from fs_store_scrm
|
|
|
</sql>
|
|
</sql>
|
|
|
|
|
|
|
@@ -225,6 +226,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="settlementAgreementFileName !=null ">settlement_agreement_file_name , </if>
|
|
<if test="settlementAgreementFileName !=null ">settlement_agreement_file_name , </if>
|
|
|
<if test="qualityAssuranceAgreementFileName !=null ">quality_assurance_agreement_fileName , </if>
|
|
<if test="qualityAssuranceAgreementFileName !=null ">quality_assurance_agreement_fileName , </if>
|
|
|
<if test="otherSpecialQualificationFileName !=null ">other_special_qualification_fileName , </if>
|
|
<if test="otherSpecialQualificationFileName !=null ">other_special_qualification_fileName , </if>
|
|
|
|
|
+ <if test="medicalDevice2BusinessScope !=null ">medical_device2_business_scope,</if>
|
|
|
|
|
+ <if test="medicalDevice3BusinessScope !=null ">medical_device3_business_scope,</if>
|
|
|
</trim>
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="cityIds != null">#{cityIds},</if>
|
|
<if test="cityIds != null">#{cityIds},</if>
|
|
@@ -319,6 +322,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="settlementAgreementFileName !=null ">#{settlementAgreementFileName} , </if>
|
|
<if test="settlementAgreementFileName !=null ">#{settlementAgreementFileName} , </if>
|
|
|
<if test="qualityAssuranceAgreementFileName !=null ">#{qualityAssuranceAgreementFileName} , </if>
|
|
<if test="qualityAssuranceAgreementFileName !=null ">#{qualityAssuranceAgreementFileName} , </if>
|
|
|
<if test="otherSpecialQualificationFileName !=null ">#{otherSpecialQualificationFileName} , </if>
|
|
<if test="otherSpecialQualificationFileName !=null ">#{otherSpecialQualificationFileName} , </if>
|
|
|
|
|
+ <if test="medicalDevice2BusinessScope !=null ">#{medicalDevice2BusinessScope},</if>
|
|
|
|
|
+ <if test="medicalDevice3BusinessScope !=null ">#{medicalDevice3BusinessScope},</if>
|
|
|
</trim>
|
|
</trim>
|
|
|
</insert>
|
|
</insert>
|
|
|
|
|
|
|
@@ -415,6 +420,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="settlementAgreementFileName !=null ">settlement_agreement_file_name = #{settlementAgreementFileName} , </if>
|
|
<if test="settlementAgreementFileName !=null ">settlement_agreement_file_name = #{settlementAgreementFileName} , </if>
|
|
|
<if test="qualityAssuranceAgreementFileName !=null ">quality_assurance_agreement_fileName = #{qualityAssuranceAgreementFileName} , </if>
|
|
<if test="qualityAssuranceAgreementFileName !=null ">quality_assurance_agreement_fileName = #{qualityAssuranceAgreementFileName} , </if>
|
|
|
<if test="otherSpecialQualificationFileName !=null ">other_special_qualification_fileName = #{otherSpecialQualificationFileName} , </if>
|
|
<if test="otherSpecialQualificationFileName !=null ">other_special_qualification_fileName = #{otherSpecialQualificationFileName} , </if>
|
|
|
|
|
+ <if test="medicalDevice2BusinessScope !=null ">medical_device2_business_scope = #{medicalDevice2BusinessScope} , </if>
|
|
|
|
|
+ <if test="medicalDevice3BusinessScope !=null ">medical_device3_business_scope = #{medicalDevice3BusinessScope} , </if>
|
|
|
</trim>
|
|
</trim>
|
|
|
where store_id = #{storeId}
|
|
where store_id = #{storeId}
|
|
|
</update>
|
|
</update>
|