Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-evaluate
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-evaluate
Commits
42c00916
Commit
42c00916
authored
May 08, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改bug
parent
31f001da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
OrderGoodsDTO.java
...api/src/main/java/com/gic/evaluate/dto/OrderGoodsDTO.java
+12
-0
OrderItemAttrViewDTO.java
.../main/java/com/gic/evaluate/dto/OrderItemAttrViewDTO.java
+34
-0
No files found.
gic-evaluate-api/src/main/java/com/gic/evaluate/dto/OrderGoodsDTO.java
View file @
42c00916
package
com
.
gic
.
evaluate
.
dto
;
import
java.io.Serializable
;
import
java.util.List
;
/**
*
...
...
@@ -32,6 +33,9 @@ public class OrderGoodsDTO implements Serializable {
*/
private
Integer
goodsNum
;
List
<
OrderItemAttrViewDTO
>
skuInfo
;
public
String
getImageUrl
()
{
return
imageUrl
;
}
...
...
@@ -71,4 +75,12 @@ public class OrderGoodsDTO implements Serializable {
public
void
setGoodsNum
(
Integer
goodsNum
)
{
this
.
goodsNum
=
goodsNum
;
}
public
List
<
OrderItemAttrViewDTO
>
getSkuInfo
()
{
return
skuInfo
;
}
public
void
setSkuInfo
(
List
<
OrderItemAttrViewDTO
>
skuInfo
)
{
this
.
skuInfo
=
skuInfo
;
}
}
gic-evaluate-api/src/main/java/com/gic/evaluate/dto/OrderItemAttrViewDTO.java
0 → 100644
View file @
42c00916
package
com
.
gic
.
evaluate
.
dto
;
import
java.io.Serializable
;
/**
* @author zhiwj
* @Description:
* @date 2020-05-08 16:06
*/
public
class
OrderItemAttrViewDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
7570327156461809158L
;
private
String
key
;
private
String
value
;
public
OrderItemAttrViewDTO
()
{
}
public
String
getKey
()
{
return
this
.
key
;
}
public
void
setKey
(
String
key
)
{
this
.
key
=
key
;
}
public
String
getValue
()
{
return
this
.
value
;
}
public
void
setValue
(
String
value
)
{
this
.
value
=
value
;
}
}
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