Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
member-api
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
member-api
Commits
0ee9b359
Commit
0ee9b359
authored
Oct 29, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除邮编
parent
71871f45
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
16 deletions
+3
-16
pom.xml
pom.xml
+3
-9
MemberApplyController.java
...java/com/egolm/film/api/member/MemberApplyController.java
+0
-3
MemberService.java
...java/com/egolm/film/api/member/service/MemberService.java
+0
-1
MemberServiceImpl.java
...egolm/film/api/member/service/impl/MemberServiceImpl.java
+0
-3
No files found.
pom.xml
View file @
0ee9b359
...
@@ -18,15 +18,9 @@
...
@@ -18,15 +18,9 @@
<repositories>
<repositories>
<repository>
<repository>
<id>
sonatype-nexus-staging
</id>
<id>
alimaven
</id>
<name>
Sonatype Nexus Staging
</name>
<name>
aliyun maven
</name>
<url>
https://oss.sonatype.org/service/local/staging/deploy/maven2/
</url>
<url>
http://maven.aliyun.com/nexus/content/groups/public/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
</repository>
</repositories>
</repositories>
...
...
src/main/java/com/egolm/film/api/member/MemberApplyController.java
View file @
0ee9b359
...
@@ -110,7 +110,6 @@ public class MemberApplyController {
...
@@ -110,7 +110,6 @@ public class MemberApplyController {
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
true
,
name
=
"film_medium"
,
value
=
"影片色彩"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
true
,
name
=
"film_medium"
,
value
=
"影片色彩"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
true
,
name
=
"film_format"
,
value
=
"样片规格"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
true
,
name
=
"film_format"
,
value
=
"样片规格"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_express_no"
,
value
=
"快递单号"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_url"
,
value
=
"样片URL地址"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_url"
,
value
=
"样片URL地址"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_passw"
,
value
=
"样片URL访问密码"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_passw"
,
value
=
"样片URL访问密码"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_other"
,
value
=
"其他样品信息"
),
@ApiImplicitParam
(
paramType
=
"query"
,
dataType
=
"string"
,
required
=
false
,
name
=
"film_format_other"
,
value
=
"其他样品信息"
),
...
@@ -130,7 +129,6 @@ public class MemberApplyController {
...
@@ -130,7 +129,6 @@ public class MemberApplyController {
String
other_filmfest_name
,
String
other_filmfest_name
,
String
film_medium
,
String
film_medium
,
String
film_format
,
String
film_format
,
String
film_express_no
,
String
film_format_url
,
String
film_format_url
,
String
film_format_passw
,
String
film_format_passw
,
String
film_format_other
)
{
String
film_format_other
)
{
...
@@ -153,7 +151,6 @@ public class MemberApplyController {
...
@@ -153,7 +151,6 @@ public class MemberApplyController {
other_filmfest_name
,
other_filmfest_name
,
film_medium
,
film_medium
,
film_format
,
film_format
,
film_express_no
,
film_format_url
,
film_format_url
,
film_format_passw
,
film_format_passw
,
film_format_other
);
film_format_other
);
...
...
src/main/java/com/egolm/film/api/member/service/MemberService.java
View file @
0ee9b359
...
@@ -82,7 +82,6 @@ public interface MemberService {
...
@@ -82,7 +82,6 @@ public interface MemberService {
String
other_filmfest_name
,
String
other_filmfest_name
,
String
film_medium
,
String
film_medium
,
String
film_format
,
String
film_format
,
String
film_express_no
,
String
film_format_url
,
String
film_format_url
,
String
film_format_passw
,
String
film_format_passw
,
String
film_format_other
);
String
film_format_other
);
...
...
src/main/java/com/egolm/film/api/member/service/impl/MemberServiceImpl.java
View file @
0ee9b359
...
@@ -223,7 +223,6 @@ public class MemberServiceImpl implements MemberService {
...
@@ -223,7 +223,6 @@ public class MemberServiceImpl implements MemberService {
String
other_filmfest_name
,
String
other_filmfest_name
,
String
film_medium
,
String
film_medium
,
String
film_format
,
String
film_format
,
String
film_express_no
,
String
film_format_url
,
String
film_format_url
,
String
film_format_passw
,
String
film_format_passw
,
String
film_format_other
)
{
String
film_format_other
)
{
...
@@ -246,7 +245,6 @@ public class MemberServiceImpl implements MemberService {
...
@@ -246,7 +245,6 @@ public class MemberServiceImpl implements MemberService {
+
"other_filmfest_name = ?, "
+
"other_filmfest_name = ?, "
+
"film_medium = ?, "
+
"film_medium = ?, "
+
"film_format = ?, "
+
"film_format = ?, "
+
"film_express_no = ?, "
+
"film_format_url = ?, "
+
"film_format_url = ?, "
+
"film_format_passw = ?, "
+
"film_format_passw = ?, "
+
"film_format_other = ?, "
+
"film_format_other = ?, "
...
@@ -269,7 +267,6 @@ public class MemberServiceImpl implements MemberService {
...
@@ -269,7 +267,6 @@ public class MemberServiceImpl implements MemberService {
other_filmfest_name
,
other_filmfest_name
,
film_medium
,
film_medium
,
film_format
,
film_format
,
film_express_no
,
film_format_url
,
film_format_url
,
film_format_passw
,
film_format_passw
,
film_format_other
,
film_format_other
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment