Explorar el Código

Accept Merge Request #219 阿凡提版权所有改成科德版权所有 : (master -> prod)

Merge Request: 阿凡提版权所有改成科德版权所有
Created By: @albertshaw
Accepted By: @albertshaw
URL: https://coding.net/t/aft/p/AFT/git/merge/219
albertshaw hace 8 años
padre
commit
a7a61002a6

+ 13 - 0
schema/20170726-alert.sql

@@ -0,0 +1,13 @@
+alter table achievement add column international_flag int(1)  default 0 comment '是否国际化  0-否  1-是';
+alter table achievement add column country_name_zh varchar(32) default '中国' comment '国际中文名称';
+alter table user_identity add column international_flag int(1)  default 0 comment '是否国际化  0-否  1-是';
+alter table organization_identity add column international_flag int(1) default 0 comment '是否国际化 0-否 1-是';
+alter table organization_info add column country_name_zh varchar(32) default '中国' comment '国际中文名称';
+
+CREATE TABLE `country_code` (
+  `country_name_en` varchar(32) NOT NULL COMMENT '英文全称',
+  `country_name_zh` varchar(32) NOT NULL COMMENT '中文全称',
+  `region_code` char(8) NOT NULL COMMENT '国际地区编码',
+  `tel_code` int(8) DEFAULT NULL COMMENT '电话代码',
+  PRIMARY KEY (`country_name_en`)
+);

+ 1 - 1
src/main/java/com/goafanti/common/mapper/NewsMapperExt.xml

@@ -17,7 +17,7 @@
 	<select id="findList" resultMap="SummaryResultMap">
 		select
 		<include refid="Summary_Column_List" />
-		from news
+		from news where 1=1
 		<if test=" type != null">
 			and type = #{type,jdbcType=INTEGER}
 		</if>

+ 1 - 1
src/main/webapp/WEB-INF/views/common.html

@@ -202,7 +202,7 @@
 			<a href="#">联系我们</a>
 		</div>
 		<div class="container support">
-			<a href="#">Copyright © 2016-2017 阿凡提 版权所有 湘ICP备15019731号-2</a>
+			<a href="#">Copyright © 2016-2017 科德 版权所有 湘ICP备15019731号-2</a>
 			<a href="#">技术支持:湖南智明科技有限公司</a>
 		</div>
 	</th:block>