记得上下班打卡 | 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
f37aa85f
Commit
f37aa85f
authored
Jul 27, 2021
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sweet clone
parent
acf2ddd6
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
142 additions
and
41 deletions
+142
-41
SweetManualAppletDto.java
...com/liquidnet/service/sweet/dto/SweetManualAppletDto.java
+12
-1
SweetManualArtistList2Dto.java
...iquidnet/service/sweet/dto/SweetManualArtistList2Dto.java
+10
-1
SweetManualArtistListDto.java
...liquidnet/service/sweet/dto/SweetManualArtistListDto.java
+10
-1
SweetManualArtistStageListDto.java
...dnet/service/sweet/dto/SweetManualArtistStageListDto.java
+10
-1
SweetManualDto.java
.../java/com/liquidnet/service/sweet/dto/SweetManualDto.java
+10
-1
SweetArtists.java
...java/com/liquidnet/service/sweet/entity/SweetArtists.java
+9
-2
SweetManual.java
.../java/com/liquidnet/service/sweet/entity/SweetManual.java
+9
-2
SweetManualArtists.java
...om/liquidnet/service/sweet/entity/SweetManualArtists.java
+9
-2
SweetManualNotify.java
...com/liquidnet/service/sweet/entity/SweetManualNotify.java
+9
-2
SweetManualSort.java
...a/com/liquidnet/service/sweet/entity/SweetManualSort.java
+9
-2
SweetRichtext.java
...ava/com/liquidnet/service/sweet/entity/SweetRichtext.java
+11
-2
SweetStage.java
...n/java/com/liquidnet/service/sweet/entity/SweetStage.java
+9
-2
SweetArtistsServiceImpl.java
...t/service/sweet/service/impl/SweetArtistsServiceImpl.java
+2
-2
SweetManualArtistsServiceImpl.java
...ice/sweet/service/impl/SweetManualArtistsServiceImpl.java
+6
-5
SweetManualNotifyServiceImpl.java
...vice/sweet/service/impl/SweetManualNotifyServiceImpl.java
+3
-3
SweetManualServiceImpl.java
...et/service/sweet/service/impl/SweetManualServiceImpl.java
+4
-3
SweetManualSortServiceImpl.java
...ervice/sweet/service/impl/SweetManualSortServiceImpl.java
+2
-2
SweetRichtextServiceImpl.java
.../service/sweet/service/impl/SweetRichtextServiceImpl.java
+2
-2
SweetStageServiceImpl.java
...net/service/sweet/service/impl/SweetStageServiceImpl.java
+2
-2
RedisDataUtils.java
...ava/com/liquidnet/service/sweet/utils/RedisDataUtils.java
+4
-3
No files found.
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/dto/SweetManualAppletDto.java
View file @
f37aa85f
package
com
.
liquidnet
.
service
.
sweet
.
dto
;
package
com
.
liquidnet
.
service
.
sweet
.
dto
;
import
com.liquidnet.service.sweet.entity.SweetManualSort
;
import
lombok.Data
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.io.Serializable
;
@Data
@Data
public
class
SweetManualAppletDto
implements
Serializable
{
public
class
SweetManualAppletDto
implements
Serializable
,
Cloneable
{
private
String
manualId
;
private
String
manualId
;
private
String
performancesId
;
private
String
performancesId
;
private
String
title
;
private
String
title
;
...
@@ -17,4 +18,14 @@ public class SweetManualAppletDto implements Serializable {
...
@@ -17,4 +18,14 @@ public class SweetManualAppletDto implements Serializable {
private
String
longitude
;
private
String
longitude
;
private
String
latitude
;
private
String
latitude
;
private
static
final
SweetManualAppletDto
obj
=
new
SweetManualAppletDto
();
public
static
SweetManualAppletDto
getNew
()
{
try
{
return
(
SweetManualAppletDto
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualAppletDto
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/dto/SweetManualArtistList2Dto.java
View file @
f37aa85f
...
@@ -6,8 +6,17 @@ import java.io.Serializable;
...
@@ -6,8 +6,17 @@ import java.io.Serializable;
import
java.util.List
;
import
java.util.List
;
@Data
@Data
public
class
SweetManualArtistList2Dto
implements
Serializable
{
public
class
SweetManualArtistList2Dto
implements
Serializable
,
Cloneable
{
private
List
<
SweetManualArtistListDto
>
data
;
private
List
<
SweetManualArtistListDto
>
data
;
private
List
<
String
>
date
;
private
List
<
String
>
date
;
private
List
<
SweetManualArtistStageListDto
>
stage
;
private
List
<
SweetManualArtistStageListDto
>
stage
;
private
static
final
SweetManualArtistList2Dto
obj
=
new
SweetManualArtistList2Dto
();
public
static
SweetManualArtistList2Dto
getNew
()
{
try
{
return
(
SweetManualArtistList2Dto
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualArtistList2Dto
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/dto/SweetManualArtistListDto.java
View file @
f37aa85f
...
@@ -6,7 +6,7 @@ import java.io.Serializable;
...
@@ -6,7 +6,7 @@ import java.io.Serializable;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
@Data
@Data
public
class
SweetManualArtistListDto
implements
Serializable
{
public
class
SweetManualArtistListDto
implements
Serializable
,
Cloneable
{
private
String
manualRelationId
;
private
String
manualRelationId
;
private
String
artistId
;
private
String
artistId
;
...
@@ -19,4 +19,13 @@ public class SweetManualArtistListDto implements Serializable {
...
@@ -19,4 +19,13 @@ public class SweetManualArtistListDto implements Serializable {
private
String
signatureEnd
;
private
String
signatureEnd
;
private
ArrayList
<
String
>
date
;
private
ArrayList
<
String
>
date
;
private
static
final
SweetManualArtistListDto
obj
=
new
SweetManualArtistListDto
();
public
static
SweetManualArtistListDto
getNew
()
{
try
{
return
(
SweetManualArtistListDto
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualArtistListDto
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/dto/SweetManualArtistStageListDto.java
View file @
f37aa85f
...
@@ -6,6 +6,15 @@ import java.io.Serializable;
...
@@ -6,6 +6,15 @@ import java.io.Serializable;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
@Data
@Data
public
class
SweetManualArtistStageListDto
implements
Serializable
{
public
class
SweetManualArtistStageListDto
implements
Serializable
,
Cloneable
{
private
String
title
;
private
String
title
;
private
static
final
SweetManualArtistStageListDto
obj
=
new
SweetManualArtistStageListDto
();
public
static
SweetManualArtistStageListDto
getNew
()
{
try
{
return
(
SweetManualArtistStageListDto
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualArtistStageListDto
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/dto/SweetManualDto.java
View file @
f37aa85f
...
@@ -5,7 +5,7 @@ import lombok.Data;
...
@@ -5,7 +5,7 @@ import lombok.Data;
import
java.io.Serializable
;
import
java.io.Serializable
;
@Data
@Data
public
class
SweetManualDto
implements
Serializable
{
public
class
SweetManualDto
implements
Serializable
,
Cloneable
{
private
String
performancesId
;
private
String
performancesId
;
private
String
title
;
private
String
title
;
...
@@ -16,4 +16,13 @@ public class SweetManualDto implements Serializable {
...
@@ -16,4 +16,13 @@ public class SweetManualDto implements Serializable {
private
Integer
status
;
private
Integer
status
;
private
Integer
manualStatus
;
private
Integer
manualStatus
;
private
Integer
isRelease
;
private
Integer
isRelease
;
private
static
final
SweetManualDto
obj
=
new
SweetManualDto
();
public
static
SweetManualDto
getNew
()
{
try
{
return
(
SweetManualDto
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualDto
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetArtists.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetArtists
implements
Serializable
{
public
class
SweetArtists
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -64,5 +64,12 @@ public class SweetArtists implements Serializable {
...
@@ -64,5 +64,12 @@ public class SweetArtists implements Serializable {
*/
*/
private
LocalDateTime
updatdAt
;
private
LocalDateTime
updatdAt
;
private
static
final
SweetArtists
obj
=
new
SweetArtists
();
public
static
SweetArtists
getNew
()
{
try
{
return
(
SweetArtists
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetArtists
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetManual.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetManual
implements
Serializable
{
public
class
SweetManual
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -54,5 +54,12 @@ public class SweetManual implements Serializable {
...
@@ -54,5 +54,12 @@ public class SweetManual implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetManual
obj
=
new
SweetManual
();
public
static
SweetManual
getNew
()
{
try
{
return
(
SweetManual
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManual
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetManualArtists.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetManualArtists
implements
Serializable
{
public
class
SweetManualArtists
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -79,5 +79,12 @@ public class SweetManualArtists implements Serializable {
...
@@ -79,5 +79,12 @@ public class SweetManualArtists implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetManualArtists
obj
=
new
SweetManualArtists
();
public
static
SweetManualArtists
getNew
()
{
try
{
return
(
SweetManualArtists
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualArtists
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetManualNotify.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetManualNotify
implements
Serializable
{
public
class
SweetManualNotify
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -59,5 +59,12 @@ public class SweetManualNotify implements Serializable {
...
@@ -59,5 +59,12 @@ public class SweetManualNotify implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetManualNotify
obj
=
new
SweetManualNotify
();
public
static
SweetManualNotify
getNew
()
{
try
{
return
(
SweetManualNotify
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualNotify
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetManualSort.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetManualSort
implements
Serializable
{
public
class
SweetManualSort
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -44,5 +44,12 @@ public class SweetManualSort implements Serializable {
...
@@ -44,5 +44,12 @@ public class SweetManualSort implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetManualSort
obj
=
new
SweetManualSort
();
public
static
SweetManualSort
getNew
()
{
try
{
return
(
SweetManualSort
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetManualSort
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetRichtext.java
View file @
f37aa85f
...
@@ -2,8 +2,10 @@ package com.liquidnet.service.sweet.entity;
...
@@ -2,8 +2,10 @@ package com.liquidnet.service.sweet.entity;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
java.time.LocalDateTime
;
import
java.time.LocalDateTime
;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
...
@@ -17,7 +19,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +19,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetRichtext
implements
Serializable
{
public
class
SweetRichtext
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -69,5 +71,12 @@ public class SweetRichtext implements Serializable {
...
@@ -69,5 +71,12 @@ public class SweetRichtext implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetRichtext
obj
=
new
SweetRichtext
();
public
static
SweetRichtext
getNew
()
{
try
{
return
(
SweetRichtext
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetRichtext
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/entity/SweetStage.java
View file @
f37aa85f
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
...
@@ -17,7 +17,7 @@ import lombok.EqualsAndHashCode;
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
false
)
@EqualsAndHashCode
(
callSuper
=
false
)
public
class
SweetStage
implements
Serializable
{
public
class
SweetStage
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
...
@@ -49,5 +49,12 @@ public class SweetStage implements Serializable {
...
@@ -49,5 +49,12 @@ public class SweetStage implements Serializable {
*/
*/
private
LocalDateTime
updatedAt
;
private
LocalDateTime
updatedAt
;
private
static
final
SweetStage
obj
=
new
SweetStage
();
public
static
SweetStage
getNew
()
{
try
{
return
(
SweetStage
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
SweetStage
();
}
}
}
}
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetArtistsServiceImpl.java
View file @
f37aa85f
...
@@ -57,7 +57,7 @@ public class SweetArtistsServiceImpl extends ServiceImpl<SweetArtistsMapper, Swe
...
@@ -57,7 +57,7 @@ public class SweetArtistsServiceImpl extends ServiceImpl<SweetArtistsMapper, Swe
@Override
@Override
public
ResponseDto
<
Boolean
>
add
(
String
picUrl
,
String
name
,
String
pinyin
,
String
describe
)
{
public
ResponseDto
<
Boolean
>
add
(
String
picUrl
,
String
name
,
String
pinyin
,
String
describe
)
{
try
{
try
{
SweetArtists
sweetArtists
=
new
SweetArtists
();
SweetArtists
sweetArtists
=
SweetArtists
.
getNew
();
sweetArtists
.
setArtistsId
(
IDGenerator
.
nextSnowId
());
sweetArtists
.
setArtistsId
(
IDGenerator
.
nextSnowId
());
sweetArtists
.
setPicUrl
(
picUrl
);
sweetArtists
.
setPicUrl
(
picUrl
);
sweetArtists
.
setName
(
name
);
sweetArtists
.
setName
(
name
);
...
@@ -83,7 +83,7 @@ public class SweetArtistsServiceImpl extends ServiceImpl<SweetArtistsMapper, Swe
...
@@ -83,7 +83,7 @@ public class SweetArtistsServiceImpl extends ServiceImpl<SweetArtistsMapper, Swe
@Override
@Override
public
ResponseDto
<
Boolean
>
change
(
String
artistsId
,
String
picUrl
,
String
name
,
String
pinyin
,
String
describe
)
{
public
ResponseDto
<
Boolean
>
change
(
String
artistsId
,
String
picUrl
,
String
name
,
String
pinyin
,
String
describe
)
{
try
{
try
{
SweetArtists
sweetArtists
=
new
SweetArtists
();
SweetArtists
sweetArtists
=
SweetArtists
.
getNew
();
sweetArtists
.
setPicUrl
(
picUrl
);
sweetArtists
.
setPicUrl
(
picUrl
);
sweetArtists
.
setName
(
name
);
sweetArtists
.
setName
(
name
);
sweetArtists
.
setPinyin
(
pinyin
);
sweetArtists
.
setPinyin
(
pinyin
);
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetManualArtistsServiceImpl.java
View file @
f37aa85f
...
@@ -3,6 +3,7 @@ package com.liquidnet.service.sweet.service.impl;
...
@@ -3,6 +3,7 @@ package com.liquidnet.service.sweet.service.impl;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.liquidnet.commons.lang.util.CollectionUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.base.ResponseDto
;
...
@@ -42,7 +43,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
...
@@ -42,7 +43,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
PageInfo
<
SweetManualArtistListDto
>
pageInfoTmp
;
PageInfo
<
SweetManualArtistListDto
>
pageInfoTmp
;
try
{
try
{
PageHelper
.
startPage
(
page
,
size
);
PageHelper
.
startPage
(
page
,
size
);
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>
();
HashMap
<
String
,
Object
>
map
=
CollectionUtil
.
mapStringObject
();
map
.
put
(
"manualId"
,
manualId
);
map
.
put
(
"manualId"
,
manualId
);
List
<
SweetManualArtistListDto
>
voList
=
sweetManualArtistsMapper
.
getManualList
(
map
);
List
<
SweetManualArtistListDto
>
voList
=
sweetManualArtistsMapper
.
getManualList
(
map
);
pageInfoTmp
=
new
PageInfo
(
voList
);
pageInfoTmp
=
new
PageInfo
(
voList
);
...
@@ -56,7 +57,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
...
@@ -56,7 +57,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
@Override
@Override
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
artistId
,
String
stageId
,
String
performanceStart
,
String
performanceEnd
,
String
signatureStart
,
String
signatureEnd
)
{
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
artistId
,
String
stageId
,
String
performanceStart
,
String
performanceEnd
,
String
signatureStart
,
String
signatureEnd
)
{
try
{
try
{
SweetManualArtists
sweetManualNotify
=
new
SweetManualArtists
();
SweetManualArtists
sweetManualNotify
=
SweetManualArtists
.
getNew
();
sweetManualNotify
.
setManualRelationId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setManualRelationId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setManualId
(
manualId
);
sweetManualNotify
.
setManualId
(
manualId
);
sweetManualNotify
.
setStageId
(
stageId
);
sweetManualNotify
.
setStageId
(
stageId
);
...
@@ -78,7 +79,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
...
@@ -78,7 +79,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
@Override
@Override
public
ResponseDto
<
SweetManualArtistListDto
>
details
(
String
manualRelationId
)
{
public
ResponseDto
<
SweetManualArtistListDto
>
details
(
String
manualRelationId
)
{
try
{
try
{
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>
();
HashMap
<
String
,
Object
>
map
=
CollectionUtil
.
mapStringObject
();
map
.
put
(
"manualRelationId"
,
manualRelationId
);
map
.
put
(
"manualRelationId"
,
manualRelationId
);
SweetManualArtistListDto
dto
=
sweetManualArtistsMapper
.
getManualDetails
(
map
);
SweetManualArtistListDto
dto
=
sweetManualArtistsMapper
.
getManualDetails
(
map
);
return
ResponseDto
.
success
(
dto
);
return
ResponseDto
.
success
(
dto
);
...
@@ -91,7 +92,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
...
@@ -91,7 +92,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
@Override
@Override
public
ResponseDto
<
Boolean
>
change
(
String
manualRelationId
,
String
manualId
,
String
artistId
,
String
stageId
,
String
performanceStart
,
String
performanceEnd
,
String
signatureStart
,
String
signatureEnd
)
{
public
ResponseDto
<
Boolean
>
change
(
String
manualRelationId
,
String
manualId
,
String
artistId
,
String
stageId
,
String
performanceStart
,
String
performanceEnd
,
String
signatureStart
,
String
signatureEnd
)
{
try
{
try
{
SweetManualArtists
sweetManualNotify
=
new
SweetManualArtists
();
SweetManualArtists
sweetManualNotify
=
SweetManualArtists
.
getNew
();
sweetManualNotify
.
setStageId
(
stageId
);
sweetManualNotify
.
setStageId
(
stageId
);
sweetManualNotify
.
setArtistsId
(
artistId
);
sweetManualNotify
.
setArtistsId
(
artistId
);
sweetManualNotify
.
setPerformanceEnd
(
DateUtil
.
Formatter
.
yyyyMMddHHmmss
.
parse
(
performanceEnd
));
sweetManualNotify
.
setPerformanceEnd
(
DateUtil
.
Formatter
.
yyyyMMddHHmmss
.
parse
(
performanceEnd
));
...
@@ -111,7 +112,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
...
@@ -111,7 +112,7 @@ public class SweetManualArtistsServiceImpl extends ServiceImpl<SweetManualArtist
@Override
@Override
public
ResponseDto
<
Boolean
>
delete
(
String
manualRelationId
,
String
manualId
)
{
public
ResponseDto
<
Boolean
>
delete
(
String
manualRelationId
,
String
manualId
)
{
try
{
try
{
SweetManualArtists
sweetManualNotify
=
new
SweetManualArtists
();
SweetManualArtists
sweetManualNotify
=
SweetManualArtists
.
getNew
();
sweetManualNotify
.
setManualRelationId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setManualRelationId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setStatus
(
0
);
sweetManualNotify
.
setStatus
(
0
);
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetManualNotifyServiceImpl.java
View file @
f37aa85f
...
@@ -49,7 +49,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
...
@@ -49,7 +49,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
@Override
@Override
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
title
,
String
content
)
{
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
title
,
String
content
)
{
try
{
try
{
SweetManualNotify
sweetManualNotify
=
new
SweetManualNotify
();
SweetManualNotify
sweetManualNotify
=
SweetManualNotify
.
getNew
();
sweetManualNotify
.
setManualNotifyId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setManualNotifyId
(
IDGenerator
.
nextSnowId
());
sweetManualNotify
.
setManualId
(
manualId
);
sweetManualNotify
.
setManualId
(
manualId
);
sweetManualNotify
.
setTitle
(
title
);
sweetManualNotify
.
setTitle
(
title
);
...
@@ -79,7 +79,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
...
@@ -79,7 +79,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
@Override
@Override
public
ResponseDto
<
Boolean
>
change
(
String
manualId
,
String
manualNotifyId
,
String
title
,
String
content
)
{
public
ResponseDto
<
Boolean
>
change
(
String
manualId
,
String
manualNotifyId
,
String
title
,
String
content
)
{
try
{
try
{
SweetManualNotify
sweetManualNotify
=
new
SweetManualNotify
();
SweetManualNotify
sweetManualNotify
=
SweetManualNotify
.
getNew
();
sweetManualNotify
.
setTitle
(
title
);
sweetManualNotify
.
setTitle
(
title
);
sweetManualNotify
.
setContent
(
content
);
sweetManualNotify
.
setContent
(
content
);
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
...
@@ -104,7 +104,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
...
@@ -104,7 +104,7 @@ public class SweetManualNotifyServiceImpl extends ServiceImpl<SweetManualNotifyM
@Override
@Override
public
ResponseDto
<
Boolean
>
delete
(
String
manualNotifyId
)
{
public
ResponseDto
<
Boolean
>
delete
(
String
manualNotifyId
)
{
try
{
try
{
SweetManualNotify
sweetManualNotify
=
new
SweetManualNotify
();
SweetManualNotify
sweetManualNotify
=
SweetManualNotify
.
getNew
();
sweetManualNotify
.
setStatus
(
0
);
sweetManualNotify
.
setStatus
(
0
);
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualNotify
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualNotifyMapper
.
update
(
sweetManualNotify
,
Wrappers
.
lambdaUpdate
(
SweetManualNotify
.
class
).
eq
(
SweetManualNotify:
:
getManualNotifyId
,
manualNotifyId
));
sweetManualNotifyMapper
.
update
(
sweetManualNotify
,
Wrappers
.
lambdaUpdate
(
SweetManualNotify
.
class
).
eq
(
SweetManualNotify:
:
getManualNotifyId
,
manualNotifyId
));
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetManualServiceImpl.java
View file @
f37aa85f
...
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
...
@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageHelper
;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.liquidnet.commons.lang.util.BeanUtil
;
import
com.liquidnet.commons.lang.util.BeanUtil
;
import
com.liquidnet.commons.lang.util.CollectionUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.commons.lang.util.IDGenerator
;
import
com.liquidnet.service.base.ErrorMapping
;
import
com.liquidnet.service.base.ErrorMapping
;
...
@@ -44,7 +45,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
...
@@ -44,7 +45,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
PageInfo
<
SweetManualDto
>
pageInfoTmp
;
PageInfo
<
SweetManualDto
>
pageInfoTmp
;
try
{
try
{
PageHelper
.
startPage
(
page
,
size
);
PageHelper
.
startPage
(
page
,
size
);
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>
();
HashMap
<
String
,
Object
>
map
=
CollectionUtil
.
mapStringObject
();
map
.
put
(
"title"
,
name
);
map
.
put
(
"title"
,
name
);
List
<
SweetManualDto
>
voList
=
sweetManualMapper
.
getManualList
(
BeanUtil
.
convertBeanToMap
(
map
));
List
<
SweetManualDto
>
voList
=
sweetManualMapper
.
getManualList
(
BeanUtil
.
convertBeanToMap
(
map
));
for
(
int
i
=
0
;
i
<
voList
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
voList
.
size
();
i
++)
{
...
@@ -71,7 +72,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
...
@@ -71,7 +72,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
public
ResponseDto
<
Boolean
>
changeStatus
(
String
manualId
,
String
performancesId
,
Integer
status
)
{
public
ResponseDto
<
Boolean
>
changeStatus
(
String
manualId
,
String
performancesId
,
Integer
status
)
{
try
{
try
{
int
count
=
sweetManualMapper
.
selectCount
(
Wrappers
.
lambdaUpdate
(
SweetManual
.
class
).
eq
(
SweetManual:
:
getManualId
,
manualId
));
int
count
=
sweetManualMapper
.
selectCount
(
Wrappers
.
lambdaUpdate
(
SweetManual
.
class
).
eq
(
SweetManual:
:
getManualId
,
manualId
));
SweetManual
sweetManual
=
new
SweetManual
();
SweetManual
sweetManual
=
SweetManual
.
getNew
();
if
(
count
>
0
)
{
//修改
if
(
count
>
0
)
{
//修改
sweetManual
.
setStatus
(
status
);
sweetManual
.
setStatus
(
status
);
sweetManual
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManual
.
setUpdatedAt
(
LocalDateTime
.
now
());
...
@@ -94,7 +95,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
...
@@ -94,7 +95,7 @@ public class SweetManualServiceImpl extends ServiceImpl<SweetManualMapper, Sweet
@Override
@Override
public
ResponseDto
<
Boolean
>
changeRelease
(
String
manualId
,
Integer
isRelease
)
{
public
ResponseDto
<
Boolean
>
changeRelease
(
String
manualId
,
Integer
isRelease
)
{
try
{
try
{
SweetManual
sweetManual
=
new
SweetManual
();
SweetManual
sweetManual
=
SweetManual
.
getNew
();
sweetManual
.
setIsRelease
(
isRelease
);
sweetManual
.
setIsRelease
(
isRelease
);
sweetManual
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManual
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualMapper
.
update
(
sweetManual
,
Wrappers
.
lambdaUpdate
(
SweetManual
.
class
).
eq
(
SweetManual:
:
getManualId
,
manualId
));
sweetManualMapper
.
update
(
sweetManual
,
Wrappers
.
lambdaUpdate
(
SweetManual
.
class
).
eq
(
SweetManual:
:
getManualId
,
manualId
));
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetManualSortServiceImpl.java
View file @
f37aa85f
...
@@ -43,13 +43,13 @@ public class SweetManualSortServiceImpl extends ServiceImpl<SweetManualSortMappe
...
@@ -43,13 +43,13 @@ public class SweetManualSortServiceImpl extends ServiceImpl<SweetManualSortMappe
try
{
try
{
int
count
=
sweetManualSortMapper
.
selectCount
(
Wrappers
.
lambdaUpdate
(
SweetManualSort
.
class
).
eq
(
SweetManualSort:
:
getManualId
,
manualId
));
int
count
=
sweetManualSortMapper
.
selectCount
(
Wrappers
.
lambdaUpdate
(
SweetManualSort
.
class
).
eq
(
SweetManualSort:
:
getManualId
,
manualId
));
if
(
count
>
0
)
{
if
(
count
>
0
)
{
SweetManualSort
sweetManualSort
=
new
SweetManualSort
();
SweetManualSort
sweetManualSort
=
SweetManualSort
.
getNew
();
sweetManualSort
.
setManualId
(
manualId
);
sweetManualSort
.
setManualId
(
manualId
);
sweetManualSort
.
setShowPosition
(
content
);
sweetManualSort
.
setShowPosition
(
content
);
sweetManualSort
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualSort
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetManualSortMapper
.
update
(
sweetManualSort
,
Wrappers
.
lambdaUpdate
(
SweetManualSort
.
class
).
eq
(
SweetManualSort:
:
getManualId
,
manualId
));
sweetManualSortMapper
.
update
(
sweetManualSort
,
Wrappers
.
lambdaUpdate
(
SweetManualSort
.
class
).
eq
(
SweetManualSort:
:
getManualId
,
manualId
));
}
else
{
}
else
{
SweetManualSort
sweetManualSort
=
new
SweetManualSort
();
SweetManualSort
sweetManualSort
=
SweetManualSort
.
getNew
();
sweetManualSort
.
setManualId
(
manualId
);
sweetManualSort
.
setManualId
(
manualId
);
sweetManualSort
.
setShowPosition
(
content
);
sweetManualSort
.
setShowPosition
(
content
);
sweetManualSort
.
setCreatedAt
(
LocalDateTime
.
now
());
sweetManualSort
.
setCreatedAt
(
LocalDateTime
.
now
());
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetRichtextServiceImpl.java
View file @
f37aa85f
...
@@ -42,7 +42,7 @@ public class SweetRichtextServiceImpl extends ServiceImpl<SweetRichtextMapper, S
...
@@ -42,7 +42,7 @@ public class SweetRichtextServiceImpl extends ServiceImpl<SweetRichtextMapper, S
@Override
@Override
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
details
,
String
local
,
String
pirUrl
,
Integer
type
)
{
public
ResponseDto
<
Boolean
>
add
(
String
manualId
,
String
details
,
String
local
,
String
pirUrl
,
Integer
type
)
{
try
{
try
{
SweetRichtext
sweetRichtext
=
new
SweetRichtext
();
SweetRichtext
sweetRichtext
=
SweetRichtext
.
getNew
();
sweetRichtext
.
setRichtextId
(
IDGenerator
.
nextSnowId
());
sweetRichtext
.
setRichtextId
(
IDGenerator
.
nextSnowId
());
sweetRichtext
.
setManualId
(
manualId
);
sweetRichtext
.
setManualId
(
manualId
);
if
(
type
==
5
)
{
if
(
type
==
5
)
{
...
@@ -65,7 +65,7 @@ public class SweetRichtextServiceImpl extends ServiceImpl<SweetRichtextMapper, S
...
@@ -65,7 +65,7 @@ public class SweetRichtextServiceImpl extends ServiceImpl<SweetRichtextMapper, S
@Override
@Override
public
ResponseDto
<
Boolean
>
change
(
String
manualId
,
String
details
,
String
local
,
String
pirUrl
,
Integer
type
)
{
public
ResponseDto
<
Boolean
>
change
(
String
manualId
,
String
details
,
String
local
,
String
pirUrl
,
Integer
type
)
{
try
{
try
{
SweetRichtext
sweetRichtext
=
new
SweetRichtext
();
SweetRichtext
sweetRichtext
=
SweetRichtext
.
getNew
();
sweetRichtext
.
setRichtextId
(
IDGenerator
.
nextSnowId
());
sweetRichtext
.
setRichtextId
(
IDGenerator
.
nextSnowId
());
sweetRichtext
.
setManualId
(
manualId
);
sweetRichtext
.
setManualId
(
manualId
);
sweetRichtext
.
setDetails
(
details
);
sweetRichtext
.
setDetails
(
details
);
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/service/impl/SweetStageServiceImpl.java
View file @
f37aa85f
...
@@ -54,7 +54,7 @@ public class SweetStageServiceImpl extends ServiceImpl<SweetStageMapper, SweetSt
...
@@ -54,7 +54,7 @@ public class SweetStageServiceImpl extends ServiceImpl<SweetStageMapper, SweetSt
@Override
@Override
public
ResponseDto
<
Boolean
>
add
(
String
name
)
{
public
ResponseDto
<
Boolean
>
add
(
String
name
)
{
try
{
try
{
SweetStage
sweetStage
=
new
SweetStage
();
SweetStage
sweetStage
=
SweetStage
.
getNew
();
sweetStage
.
setStageId
(
IDGenerator
.
nextSnowId
());
sweetStage
.
setStageId
(
IDGenerator
.
nextSnowId
());
sweetStage
.
setTitle
(
name
);
sweetStage
.
setTitle
(
name
);
sweetStage
.
setCreatedAt
(
LocalDateTime
.
now
());
sweetStage
.
setCreatedAt
(
LocalDateTime
.
now
());
...
@@ -77,7 +77,7 @@ public class SweetStageServiceImpl extends ServiceImpl<SweetStageMapper, SweetSt
...
@@ -77,7 +77,7 @@ public class SweetStageServiceImpl extends ServiceImpl<SweetStageMapper, SweetSt
@Override
@Override
public
ResponseDto
<
Boolean
>
change
(
String
name
,
String
stageId
)
{
public
ResponseDto
<
Boolean
>
change
(
String
name
,
String
stageId
)
{
try
{
try
{
SweetStage
sweetStage
=
new
SweetStage
();
SweetStage
sweetStage
=
SweetStage
.
getNew
();
sweetStage
.
setTitle
(
name
);
sweetStage
.
setTitle
(
name
);
sweetStage
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetStage
.
setUpdatedAt
(
LocalDateTime
.
now
());
sweetStageMapper
.
update
(
sweetStage
,
Wrappers
.
lambdaUpdate
(
SweetStage
.
class
).
eq
(
SweetStage:
:
getStageId
,
stageId
));
sweetStageMapper
.
update
(
sweetStage
,
Wrappers
.
lambdaUpdate
(
SweetStage
.
class
).
eq
(
SweetStage:
:
getStageId
,
stageId
));
...
...
liquidnet-bus-service/liquidnet-service-sweet/src/main/java/com/liquidnet/service/sweet/utils/RedisDataUtils.java
View file @
f37aa85f
...
@@ -2,6 +2,7 @@ package com.liquidnet.service.sweet.utils;
...
@@ -2,6 +2,7 @@ package com.liquidnet.service.sweet.utils;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.liquidnet.common.cache.redis.util.RedisUtil
;
import
com.liquidnet.common.cache.redis.util.RedisUtil
;
import
com.liquidnet.commons.lang.util.CollectionUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
com.liquidnet.service.sweet.constant.SweetConstant
;
import
com.liquidnet.service.sweet.constant.SweetConstant
;
import
com.liquidnet.service.sweet.dto.SweetManualAppletDto
;
import
com.liquidnet.service.sweet.dto.SweetManualAppletDto
;
...
@@ -64,7 +65,7 @@ public class RedisDataUtils {
...
@@ -64,7 +65,7 @@ public class RedisDataUtils {
//获取电子手册演出详情
//获取电子手册演出详情
public
SweetManualAppletDto
getAppletPerformance
(
String
manualId
)
{
public
SweetManualAppletDto
getAppletPerformance
(
String
manualId
)
{
List
<
SweetManualAppletDto
>
data
=
getPushList
();
List
<
SweetManualAppletDto
>
data
=
getPushList
();
SweetManualAppletDto
returnData
=
new
SweetManualAppletDto
();
SweetManualAppletDto
returnData
=
SweetManualAppletDto
.
getNew
();
for
(
SweetManualAppletDto
item
:
data
)
{
for
(
SweetManualAppletDto
item
:
data
)
{
if
(
item
.
getManualId
().
equalsIgnoreCase
(
manualId
))
{
if
(
item
.
getManualId
().
equalsIgnoreCase
(
manualId
))
{
returnData
=
item
;
returnData
=
item
;
...
@@ -76,7 +77,7 @@ public class RedisDataUtils {
...
@@ -76,7 +77,7 @@ public class RedisDataUtils {
public
SweetManualArtistList2Dto
setTimeList
(
String
manualId
,
String
content
)
{
public
SweetManualArtistList2Dto
setTimeList
(
String
manualId
,
String
content
)
{
String
redisKey
=
SweetConstant
.
REDIS_KEY_SWEET_MANUAL_TIME_LIST
.
concat
(
manualId
);
String
redisKey
=
SweetConstant
.
REDIS_KEY_SWEET_MANUAL_TIME_LIST
.
concat
(
manualId
);
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>
();
HashMap
<
String
,
Object
>
map
=
CollectionUtil
.
mapStringObject
();
map
.
put
(
"manualId"
,
manualId
);
map
.
put
(
"manualId"
,
manualId
);
List
<
SweetManualArtistListDto
>
data
=
sweetManualArtistsMapper
.
getManualList
(
map
);
List
<
SweetManualArtistListDto
>
data
=
sweetManualArtistsMapper
.
getManualList
(
map
);
...
@@ -93,7 +94,7 @@ public class RedisDataUtils {
...
@@ -93,7 +94,7 @@ public class RedisDataUtils {
//获取舞台
//获取舞台
List
<
SweetManualArtistStageListDto
>
stageData
=
sweetManualArtistsMapper
.
getStageNameList
(
map
);
List
<
SweetManualArtistStageListDto
>
stageData
=
sweetManualArtistsMapper
.
getStageNameList
(
map
);
SweetManualArtistList2Dto
returnData
=
new
SweetManualArtistList2Dto
();
SweetManualArtistList2Dto
returnData
=
SweetManualArtistList2Dto
.
getNew
();
returnData
.
setDate
(
list
);
returnData
.
setDate
(
list
);
returnData
.
setData
(
data
);
returnData
.
setData
(
data
);
returnData
.
setStage
(
stageData
);
returnData
.
setStage
(
stageData
);
...
...
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