Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-store
Overview
Overview
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
base_platform_enterprise
gic-store
Commits
941c5442
Commit
941c5442
authored
Jul 03, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
自定义域字段-排序
parent
ce58a068
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
StoreFieldSelectDTO.java
.../src/main/java/com/gic/store/dto/StoreFieldSelectDTO.java
+3
-3
StoreFieldSelectApiService.java
...ava/com/gic/store/service/StoreFieldSelectApiService.java
+14
-0
No files found.
gic-store-api/src/main/java/com/gic/store/dto/StoreFieldSelectDTO.java
View file @
941c5442
...
...
@@ -33,7 +33,7 @@ public class StoreFieldSelectDTO implements Serializable {
/**
*
*/
private
Integer
sort
;
private
Double
sort
;
/**
*
...
...
@@ -87,11 +87,11 @@ public class StoreFieldSelectDTO implements Serializable {
this
.
enterpriseId
=
enterpriseId
;
}
public
Integer
getSort
()
{
public
Double
getSort
()
{
return
sort
;
}
public
void
setSort
(
Integer
sort
)
{
public
void
setSort
(
Double
sort
)
{
this
.
sort
=
sort
;
}
...
...
gic-store-api/src/main/java/com/gic/store/service/StoreFieldSelectApiService.java
View file @
941c5442
...
...
@@ -57,4 +57,18 @@ public interface StoreFieldSelectApiService {
*/
ServiceResponse
<
StoreFieldSelectDTO
>
getStoreFieldSelect
(
int
storeFieldSelectId
);
/**
* 置底
* @param storeFieldSelectId
* @return
*/
ServiceResponse
<
Integer
>
sortBottom
(
int
storeFieldSelectId
);
/**
* 置顶
* @param storeFieldSelectId
* @return
*/
ServiceResponse
<
Integer
>
sortTopping
(
int
storeFieldSelectId
);
}
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