Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gf_back
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tianchao
gf_back
Commits
07f34416
Commit
07f34416
authored
Nov 21, 2024
by
ZWT
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
得到的
parent
32ce56a1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/entity/ThirdWellAvgActivePowerEnt.java
...ps/core/prediction/entity/ThirdWellAvgActivePowerEnt.java
+2
-2
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/entity/ThirdWellAvgActivePowerView.java
...s/core/prediction/entity/ThirdWellAvgActivePowerView.java
+1
-1
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/service/ThirdDataAccessCloudServiceImpl.java
...e/prediction/service/ThirdDataAccessCloudServiceImpl.java
+1
-0
C12-prediction/pps-core-prediction/src/main/resources/mybatis/mapper/pps/core/prediction/ThirdWellAvgActivePowerViewMapper.xml
...pps/core/prediction/ThirdWellAvgActivePowerViewMapper.xml
+2
-1
No files found.
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/entity/ThirdWellAvgActivePowerEnt.java
View file @
07f34416
...
...
@@ -21,8 +21,8 @@ import java.util.Date;
@TableName
(
"THIRD_WELL_AVG_ACTIVE_POWER"
)
public
class
ThirdWellAvgActivePowerEnt
implements
Serializable
{
@XText
(
"ID"
)
@TableId
(
type
=
IdType
.
A
UTO
)
private
Lo
ng
id
;
@TableId
(
type
=
IdType
.
A
SSIGN_UUID
)
private
Stri
ng
id
;
@XText
(
"井号"
)
@TableField
...
...
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/entity/ThirdWellAvgActivePowerView.java
View file @
07f34416
...
...
@@ -25,7 +25,7 @@ import java.util.List;
public
class
ThirdWellAvgActivePowerView
implements
Serializable
{
@XText
(
"ID"
)
@TableField
private
Lo
ng
id
;
private
Stri
ng
id
;
@XText
(
"井号"
)
@TableField
...
...
C12-prediction/pps-core-prediction/src/main/java/pps/core/prediction/service/ThirdDataAccessCloudServiceImpl.java
View file @
07f34416
...
...
@@ -678,6 +678,7 @@ public class ThirdDataAccessCloudServiceImpl implements IThirdDataAccessCloudSer
o
.
setAvgActivePower
(
avgActivePower
);
dtoList
.
add
(
ThirdWellAvgActivePowerView
.
builder
()
.
id
(
BaseUtils
.
randomUUIDString
())
.
wellNumber
(
o
.
getWellNumber
())
.
inputTime
(
o
.
getInputTime
())
.
avgActivePower
(
o
.
getAvgActivePower
())
...
...
C12-prediction/pps-core-prediction/src/main/resources/mybatis/mapper/pps/core/prediction/ThirdWellAvgActivePowerViewMapper.xml
View file @
07f34416
...
...
@@ -39,11 +39,12 @@
</select>
<insert
id=
"batchInsertList"
parameterType=
"list"
>
INSERT INTO THIRD_WELL_AVG_ACTIVE_POWER ( WELL_NUMBER, INPUT_TIME, AVG_ACTIVE_POWER, SYSTEM_SOURCE,
INSERT INTO THIRD_WELL_AVG_ACTIVE_POWER (
ID,
WELL_NUMBER, INPUT_TIME, AVG_ACTIVE_POWER, SYSTEM_SOURCE,
SAVE_DATE )
VALUES
<foreach
collection=
"list"
item=
"item"
separator=
","
>
(
#{item.id},
#{item.wellNumber},
#{item.inputTime},
#{item.avgActivePower},
...
...
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