记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
ac98ac7c
Commit
ac98ac7c
authored
Aug 01, 2022
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
去掉音乐人id
parent
0c4e5dd5
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
2 additions
and
12 deletions
+2
-12
SweetYbEnrollParam.java
...liquidnet/service/sweet/dto/param/SweetYbEnrollParam.java
+0
-4
SweetYbEnroll.java
...ava/com/liquidnet/service/sweet/entity/SweetYbEnroll.java
+0
-5
db_sweetsugar_structure.sql
.../liquidnet-service-sweet/docu/db_sweetsugar_structure.sql
+0
-1
SweetYbEnrollServiceImpl.java
.../service/sweet/service/impl/SweetYbEnrollServiceImpl.java
+1
-1
sqlmap.properties
...uidnet-service-sweet/src/main/resources/sqlmap.properties
+1
-1
No files found.
liquidnet-bus-api/liquidnet-service-sweet-api/src/main/java/com/liquidnet/service/sweet/dto/param/SweetYbEnrollParam.java
View file @
ac98ac7c
...
...
@@ -14,10 +14,6 @@ public class SweetYbEnrollParam implements Serializable {
private
static
final
long
serialVersionUID
=
487812347569053758L
;
@ApiModelProperty
(
position
=
10
,
required
=
true
,
value
=
"音乐人id"
,
example
=
"1577654"
)
@NotNull
(
message
=
"音乐人id不能为空"
)
private
Integer
musicianId
;
@ApiModelProperty
(
position
=
11
,
required
=
false
,
value
=
"联系电话"
,
example
=
"15888888888"
)
private
String
contactTell
;
...
...
liquidnet-bus-do/liquidnet-service-sweet-do/src/main/java/com/liquidnet/service/sweet/entity/SweetYbEnroll.java
View file @
ac98ac7c
...
...
@@ -30,11 +30,6 @@ public class SweetYbEnroll implements Serializable {
*/
private
String
enrollId
;
/**
* 音乐人id
*/
private
Integer
musicianId
;
/**
* 联系电话
*/
...
...
liquidnet-bus-service/liquidnet-service-sweet/docu/db_sweetsugar_structure.sql
View file @
ac98ac7c
...
...
@@ -494,7 +494,6 @@ CREATE TABLE `sweet_yb_enroll`
(
`mid`
bigint
unsigned
NOT
NULL
AUTO_INCREMENT
primary
key
,
`enroll_id`
varchar
(
255
)
NOT
NULL
DEFAULT
''
COMMENT
'enroll_id'
,
`musician_id`
int
NOT
NULL
DEFAULT
'0'
COMMENT
'音乐人id'
,
`contact_tell`
varchar
(
30
)
NOT
NULL
DEFAULT
''
COMMENT
'联系电话'
,
`contact_wechat`
varchar
(
64
)
NOT
NULL
DEFAULT
''
COMMENT
'联系微信'
,
`nickname`
varchar
(
255
)
NOT
NULL
DEFAULT
''
COMMENT
'乐队名称'
,
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetYbEnrollServiceImpl.java
View file @
ac98ac7c
...
...
@@ -39,7 +39,7 @@ public class SweetYbEnrollServiceImpl extends ServiceImpl<SweetYbEnrollMapper, S
LinkedList
<
Object
[]>
sqlsDataA
=
CollectionUtil
.
linkedListObjectArr
();
sqls
.
add
(
SqlMapping
.
get
(
"sweet_yb_enroll.insert"
));
sqlsDataA
.
add
(
new
Object
[]{
IDGenerator
.
nextSnowId
(),
param
.
get
MusicianId
(),
param
.
get
ContactTell
(),
IDGenerator
.
nextSnowId
(),
param
.
getContactTell
(),
param
.
getContactWechat
(),
param
.
getNickname
(),
param
.
getStyle
(),
param
.
getImgUrl
(),
param
.
getAudioUrl
(),
param
.
getUniversities
(),
});
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/resources/sqlmap.properties
View file @
ac98ac7c
This diff is collapsed.
Click to expand it.
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