Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
bailuntec-api
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
huluobin
bailuntec-api
Commits
93f83c8e
Commit
93f83c8e
authored
Mar 30, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
9eb13e08
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
17 deletions
+31
-17
MjzzPage.java
...in/java/com/bailuntec/api/bailuntec/mj/resp/MjzzPage.java
+12
-0
StockLogResp.java
...ava/com/bailuntec/api/bailuntec/mj/resp/StockLogResp.java
+19
-17
No files found.
src/main/java/com/bailuntec/api/bailuntec/mj/resp/MjzzPage.java
View file @
93f83c8e
package
com
.
bailuntec
.
api
.
bailuntec
.
mj
.
resp
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
lombok.Data
;
import
java.util.List
;
...
...
@@ -7,10 +8,21 @@ import java.util.List;
@Data
public
class
MjzzPage
<
T
>
{
@JsonProperty
(
"CurrentPage"
)
private
Integer
currentPage
;
@JsonProperty
(
"TotalPages"
)
private
Integer
totalPages
;
@JsonProperty
(
"TotalItems"
)
private
Integer
totalItems
;
@JsonProperty
(
"ItemsPerPage"
)
private
Integer
itemsPerPage
;
@JsonProperty
(
"Items"
)
private
List
<
T
>
items
;
@JsonProperty
(
"Context"
)
private
String
context
;
}
src/main/java/com/bailuntec/api/bailuntec/mj/resp/StockLogResp.java
View file @
93f83c8e
package
com
.
bailuntec
.
api
.
bailuntec
.
mj
.
resp
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
lombok.Data
;
import
java.math.BigDecimal
;
import
java.util.Date
;
...
...
@@ -11,53 +12,54 @@ import java.util.Date;
* @Date: Created in 11:07 2021-03-29
* @Modified by:
*/
@Data
public
class
StockLogResp
{
@J
SONField
(
name
=
"log_id"
)
@J
sonProperty
(
"log_id"
)
private
Integer
logId
;
@J
SONField
(
name
=
"sku"
)
@J
sonProperty
(
"sku"
)
private
String
skuCode
;
@J
SONField
(
name
=
"sku_name"
)
@J
sonProperty
(
"sku_name"
)
private
String
skuName
;
@J
SONField
(
name
=
"log_type_id"
)
@J
sonProperty
(
"log_type_id"
)
private
Integer
logTypeId
;
@J
SONField
(
name
=
"log_type"
)
@J
sonProperty
(
"log_type"
)
private
String
logType
;
@J
SONField
(
name
=
"log_quantity"
)
@J
sonProperty
(
"log_quantity"
)
private
Integer
logQuantity
;
@J
SONField
(
name
=
"final_stock"
)
@J
sonProperty
(
"final_stock"
)
private
BigDecimal
finalStock
;
@J
SONField
(
name
=
"warehouse_id"
)
@J
sonProperty
(
"warehouse_id"
)
private
Integer
warehouseId
;
@J
SONField
(
name
=
"warehouse_name"
)
@J
sonProperty
(
"warehouse_name"
)
private
String
warehouseName
;
@J
SONField
(
name
=
"create_time"
,
format
=
"yyyy-MM-dd
"
)
@J
sonProperty
(
"create_time
"
)
private
Date
createTime
;
@J
SONField
(
name
=
"redundancy_stock"
)
@J
sonProperty
(
"redundancy_stock"
)
private
BigDecimal
redundancyStock
;
@J
SONField
(
name
=
"warehouse_type"
)
@J
sonProperty
(
"warehouse_type"
)
private
Integer
warehouseType
;
@J
SONField
(
name
=
"type_id"
)
@J
sonProperty
(
"type_id"
)
private
Integer
typeId
;
@J
SONField
(
name
=
"type_name"
)
@J
sonProperty
(
"type_name"
)
private
String
typeName
;
@J
SONField
(
name
=
"product_category_id"
)
@J
sonProperty
(
"product_category_id"
)
private
Integer
productCategoryId
;
@J
SONField
(
name
=
"product_category_id_name"
)
@J
sonProperty
(
"product_category_id_name"
)
private
String
productCategoryName
;
}
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