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
a9885f4d
Commit
a9885f4d
authored
Mar 29, 2021
by
liyanlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
半成品库存流水
parent
2691ea71
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
79 additions
and
0 deletions
+79
-0
MjzzApi.java
src/main/java/com/bailuntec/api/bailuntec/mj/MjzzApi.java
+16
-0
StockLogResp.java
...ava/com/bailuntec/api/bailuntec/mj/resp/StockLogResp.java
+63
-0
No files found.
src/main/java/com/bailuntec/api/bailuntec/mj/MjzzApi.java
View file @
a9885f4d
...
@@ -64,4 +64,20 @@ public interface MjzzApi {
...
@@ -64,4 +64,20 @@ public interface MjzzApi {
@GetMapping
(
"/api/ProdStockPage"
)
@GetMapping
(
"/api/ProdStockPage"
)
MjzzResult
<
MjzzPage
<
ProdStockPageResp
>>
prodStockPage
(
@RequestParam
(
"page"
)
Integer
page
,
MjzzResult
<
MjzzPage
<
ProdStockPageResp
>>
prodStockPage
(
@RequestParam
(
"page"
)
Integer
page
,
@RequestParam
(
"rows"
)
Integer
rows
);
@RequestParam
(
"rows"
)
Integer
rows
);
/**
* <p>
* 半成品库存流水
* </p>
* @param page
* @param rows
* @param btime
* @param etime
* @return
*/
@GetMapping
(
"/api/StockLog"
)
MjzzResult
<
MjzzPage
<
StockLogResp
>>
stockLog
(
@RequestParam
(
"page"
)
Integer
page
,
@RequestParam
(
"rows"
)
Integer
rows
,
@RequestParam
(
"btime"
)
String
btime
,
@RequestParam
(
"etime"
)
String
etime
);
}
}
src/main/java/com/bailuntec/api/bailuntec/mj/resp/StockLogResp.java
0 → 100644
View file @
a9885f4d
package
com
.
bailuntec
.
api
.
bailuntec
.
mj
.
resp
;
import
com.alibaba.fastjson.annotation.JSONField
;
import
java.math.BigDecimal
;
import
java.util.Date
;
/**
* @Author: li.yanlin
* @Description: 半成品库存流水
* @Date: Created in 11:07 2021-03-29
* @Modified by:
*/
public
class
StockLogResp
{
@JSONField
(
name
=
"log_id"
)
private
Integer
logId
;
@JSONField
(
name
=
"sku"
)
private
String
skuCode
;
@JSONField
(
name
=
"sku_name"
)
private
String
skuName
;
@JSONField
(
name
=
"log_type_id"
)
private
Integer
logTypeId
;
@JSONField
(
name
=
"log_type"
)
private
String
logType
;
@JSONField
(
name
=
"log_quantity"
)
private
Integer
logQuantity
;
@JSONField
(
name
=
"final_stock"
)
private
BigDecimal
finalStock
;
@JSONField
(
name
=
"warehouse_id"
)
private
Integer
warehouseId
;
@JSONField
(
name
=
"warehouse_name"
)
private
String
warehouseName
;
@JSONField
(
name
=
"create_time"
,
format
=
"yyyy-MM-dd"
)
private
Date
createTime
;
@JSONField
(
name
=
"redundancy_stock"
)
private
BigDecimal
redundancyStock
;
@JSONField
(
name
=
"warehouse_type"
)
private
Integer
warehouseType
;
@JSONField
(
name
=
"type_id"
)
private
Integer
typeId
;
@JSONField
(
name
=
"type_name"
)
private
String
typeName
;
@JSONField
(
name
=
"product_category_id"
)
private
Integer
productCategoryId
;
@JSONField
(
name
=
"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