瀏覽代碼

修改xml中错误重构的userName为name。

tomatozq 5 年之前
父節點
當前提交
274f057cfe

+ 2 - 2
picc-admin-server/src/main/resources/mapper/sys/DataDictionary.xml

@@ -30,7 +30,7 @@
 		values
 		(
 #{id,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{value,jdbcType=VARCHAR}
 ,#{sortNo,jdbcType= NUMERIC }
 ,#{parentId,jdbcType=VARCHAR}
@@ -51,7 +51,7 @@
 		update sys_data_dictionary
 		<set>
 				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="value!=null">
 		value_=#{value,jdbcType=VARCHAR},

+ 3 - 3
picc-common/src/main/resources/mapper/base/CompanyMember.xml

@@ -34,7 +34,7 @@
 		(
 #{id,jdbcType=VARCHAR}
 ,#{companyId,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{cardType,jdbcType=VARCHAR}
 ,#{cardNo,jdbcType=VARCHAR}
 ,#{sex,jdbcType= NUMERIC }
@@ -60,8 +60,8 @@
 				<if test="companyId!=null">
 		company_id=#{companyId,jdbcType=VARCHAR},
 		</if>
-				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+				<if test="name!=null">
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="cardType!=null">
 		card_type=#{cardType,jdbcType=VARCHAR},

+ 2 - 2
picc-common/src/main/resources/mapper/base/InsuranceAgent.xml

@@ -25,7 +25,7 @@
 		values
 		(
 #{id,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{status,jdbcType=VARCHAR}
 ,#{delFlag,jdbcType= NUMERIC }
 ,#{createBy,jdbcType=VARCHAR}
@@ -42,7 +42,7 @@
 		update base_insurance_agent
 		<set>
 				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="status!=null">
 		status_=#{status,jdbcType=VARCHAR},

+ 2 - 2
picc-common/src/main/resources/mapper/base/InsuranceDefinition.xml

@@ -27,7 +27,7 @@
 		values
 		(
 #{id,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{insuranceDescription,jdbcType=VARCHAR}
 ,#{clause,jdbcType=VARCHAR}
 ,#{status,jdbcType=VARCHAR}
@@ -46,7 +46,7 @@
 		update base_insurance_definition
 		<set>
 				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="insuranceDescription!=null">
 		insurance_description=#{insuranceDescription,jdbcType=VARCHAR},

+ 3 - 3
picc-common/src/main/resources/mapper/base/InsuranceDefinitionLimit.xml

@@ -29,7 +29,7 @@
 		(
 #{id,jdbcType=VARCHAR}
 ,#{definitionId,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{limit,jdbcType=VARCHAR}
 ,#{unit,jdbcType=VARCHAR}
 ,#{status,jdbcType=VARCHAR}
@@ -50,8 +50,8 @@
 				<if test="definitionId!=null">
 		definition_id=#{definitionId,jdbcType=VARCHAR},
 		</if>
-				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+				<if test="name!=null">
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="limit!=null">
 		limit_=#{limit,jdbcType=VARCHAR},

+ 2 - 2
picc-common/src/main/resources/mapper/base/Jobs.xml

@@ -28,7 +28,7 @@
 		(
 #{id,jdbcType=VARCHAR}
 ,#{definitionId,jdbcType=VARCHAR}
-,#{userName,jdbcType=VARCHAR}
+,#{name,jdbcType=VARCHAR}
 ,#{content,jdbcType=VARCHAR}
 ,#{status,jdbcType=VARCHAR}
 ,#{delFlag,jdbcType= NUMERIC }
@@ -49,7 +49,7 @@
 		definition_id=#{definitionId,jdbcType=VARCHAR},
 		</if>
 				<if test="userName!=null">
-		name_=#{userName,jdbcType=VARCHAR},
+		name_=#{name,jdbcType=VARCHAR},
 		</if>
 				<if test="content!=null">
 		content_=#{content,jdbcType=VARCHAR},