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
88e89355
Commit
88e89355
authored
Mar 17, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
门店添加默认图片
parent
26554a7e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
Constants.java
...e-api/src/main/java/com/gic/store/constant/Constants.java
+2
-0
StoreDTO.java
gic-store-api/src/main/java/com/gic/store/dto/StoreDTO.java
+13
-0
No files found.
gic-store-api/src/main/java/com/gic/store/constant/Constants.java
View file @
88e89355
...
...
@@ -14,6 +14,8 @@ public interface Constants {
String
dateformat
=
"YYYY-MM-dd HH:mm:ss"
;
// enterprise:store:${enterpriseId}:#{storeId}
String
STORE_KEY
=
"enterprise:store:"
;
// 小程序默认图片
String
DEFAULT_PHOTO
=
"https://pic01-10001430.image.myqcloud.com/a5a82c47-5892-4c1c-afaf-0f8d4d41e032"
;
String
NATIONCODE
=
"086"
;
...
...
gic-store-api/src/main/java/com/gic/store/dto/StoreDTO.java
View file @
88e89355
...
...
@@ -48,6 +48,10 @@ public class StoreDTO extends StoreInfoDTO implements Serializable {
private
String
remark
;
private
Integer
operatorId
;
private
String
operatorName
;
/**
* 小程序默认图片
*/
private
StorePhotoDTO
defaultPhoto
;
public
Integer
getStoreId
()
{
return
storeId
;
...
...
@@ -176,4 +180,12 @@ public class StoreDTO extends StoreInfoDTO implements Serializable {
public
void
setEvaluateCount
(
Integer
evaluateCount
)
{
this
.
evaluateCount
=
evaluateCount
;
}
public
void
setDefaultPhoto
(
StorePhotoDTO
defaultPhoto
)
{
this
.
defaultPhoto
=
defaultPhoto
;
}
public
StorePhotoDTO
getDefaultPhoto
()
{
return
defaultPhoto
;
}
}
\ No newline at end of file
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