Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhengwen.ge
2016-12-19 14:31:31 +0800
Commit
8d12fe3e834b30fd5a5fa17e768bf08f1895201b
1 parent
7347e15b
公共推送
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
common/src/main/java/com/yoho/unions/common/enums/UnionTypeStatusEnum.java
dal/src/main/resources/META-INF/mybatis/UnionTypeManageMapper.xml
web/src/main/resources/databases.yml
web/src/main/webapp/META-INF/autoconf/databases.yml
common/src/main/java/com/yoho/unions/common/enums/UnionTypeStatusEnum.java
View file @
8d12fe3
...
...
@@ -5,9 +5,9 @@ package com.yoho.unions.common.enums;
*/
public
enum
UnionTypeStatusEnum
{
OPEN
(
"
0
"
),
OPEN
(
"
1
"
),
CLOSE
(
"
1
"
);
CLOSE
(
"
0
"
);
private
String
status
;
...
...
dal/src/main/resources/META-INF/mybatis/UnionTypeManageMapper.xml
View file @
8d12fe3
...
...
@@ -17,7 +17,7 @@
<select
id=
"selectAll"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from union_type
from union_type
_manage
</select>
<!--<select id="selectByUnionType" resultMap="BaseResultMap" parameterType="java.lang.Integer">
SELECT <include refid="Base_Column_List" />
...
...
web/src/main/resources/databases.yml
View file @
8d12fe3
...
...
@@ -33,5 +33,6 @@ datasources:
daos
:
-
com.yoho.unions.dal.IUserOrdersDAO
-
com.yoho.unions.dal.IUnionTypeDAO
-
com.yoho.unions.dal.IUnionTypeManageDAO
readOnlyInSlave
:
true
\ No newline at end of file
...
...
web/src/main/webapp/META-INF/autoconf/databases.yml
View file @
8d12fe3
...
...
@@ -34,5 +34,5 @@ datasources:
daos
:
-
com.yoho.unions.dal.IUserOrdersDAO
-
com.yoho.unions.dal.IUnionTypeDAO
-
com.yoho.unions.dal.IUnionTypeManageDAO
readOnlyInSlave
:
true
\ No newline at end of file
...
...
Please
register
or
login
to post a comment