Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HYH.APSJ
Project
Project
Details
Activity
Releases
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
佟礼
HYH.APSJ
Commits
ff138a40
Commit
ff138a40
authored
Aug 31, 2026
by
Tong Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
POA
parent
78ed82da
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
339 additions
and
4031 deletions
+339
-4031
model.lp
mp/lp/model.lp
+327
-4019
optimization_result_1.json
mp/result/optimization_result_1.json
+1
-1
MacroPlannerDataConverter.java
.../com/aps/macroplanner/data/MacroPlannerDataConverter.java
+11
-11
No files found.
mp/lp/model.lp
View file @
ff138a40
This diff is collapsed.
Click to expand it.
mp/result/optimization_result_1.json
View file @
ff138a40
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/main/java/com/aps/macroplanner/data/MacroPlannerDataConverter.java
View file @
ff138a40
...
...
@@ -187,19 +187,19 @@ public class MacroPlannerDataConverter {
ctx
.
periodDimension
,
periodCount
,
ctx
.
baseTime
,
ctx
.
horizonEnd
);
// 1. 需求订单 (ApsDemandOrder, 按 deliverytime 时间范围过滤)
ctx
.
apsDemandOrders
=
apsDemandOrderMapper
.
selectList
(
new
LambdaQueryWrapper
<
ApsDemandOrder
>()
.
ge
(
ApsDemandOrder:
:
getDeliverytime
,
ctx
.
baseTime
)
.
lt
(
ApsDemandOrder:
:
getDeliverytime
,
horizonEndDateTime
));
// ctx.apsDemandOrders = apsDemandOrderMapper.selectList(
//
// ctx.apsDemandOrders = apsDemandOrderMapper.selectList(
// new LambdaQueryWrapper<ApsDemandOrder>()
// .ge(ApsDemandOrder::getDeliverytime, ctx.baseTime)
// .eq(ApsDemandOrder::getCode,"XQDD_20260812_6")
// .lt(ApsDemandOrder::getDeliverytime, horizonEndDateTime)
// );
// .lt(ApsDemandOrder::getDeliverytime, horizonEndDateTime));
ctx
.
apsDemandOrders
=
apsDemandOrderMapper
.
selectList
(
new
LambdaQueryWrapper
<
ApsDemandOrder
>()
.
ge
(
ApsDemandOrder:
:
getDeliverytime
,
ctx
.
baseTime
)
.
eq
(
ApsDemandOrder:
:
getCode
,
"XQDD_20260812_6"
)
.
lt
(
ApsDemandOrder:
:
getDeliverytime
,
horizonEndDateTime
)
);
log
.
info
(
"加载需求订单: {} 条 (时间范围过滤)"
,
ctx
.
apsDemandOrders
.
size
());
...
...
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