Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clpjb.maximo76.00
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
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟宏辉
clpjb.maximo76.00
Commits
54923d23
Commit
54923d23
authored
Aug 03, 2022
by
周航
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cyq commit
parent
c5beba28
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
140 additions
and
15 deletions
+140
-15
src/tohi/app/rlrelaymanage/AircompressoractimeNum.java
src/tohi/app/rlrelaymanage/AircompressoractimeNum.java
+20
-0
src/tohi/app/rlrelaymanage/ExportBreakerNum.java
src/tohi/app/rlrelaymanage/ExportBreakerNum.java
+20
-0
src/tohi/app/rlrelaymanage/FldplateNum.java
src/tohi/app/rlrelaymanage/FldplateNum.java
+2
-15
src/tohi/app/rlrelaymanage/OiladjustNum.java
src/tohi/app/rlrelaymanage/OiladjustNum.java
+19
-0
src/tohi/app/rlrelaymanage/RlarresterleakNum.java
src/tohi/app/rlrelaymanage/RlarresterleakNum.java
+19
-0
src/tohi/app/rlrelaymanage/RldestartupcheckNum.java
src/tohi/app/rlrelaymanage/RldestartupcheckNum.java
+20
-0
src/tohi/app/rlrelaymanage/RldynamoinsNum.java
src/tohi/app/rlrelaymanage/RldynamoinsNum.java
+19
-0
src/tohi/app/rlrelaymanage/RlearthcurrentNum.java
src/tohi/app/rlrelaymanage/RlearthcurrentNum.java
+21
-0
No files found.
src/tohi/app/rlrelaymanage/AircompressoractimeNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
java.rmi.RemoteException
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.mbo.MboValue
;
import
psdi.util.MXException
;
public
class
AircompressoractimeNum
extends
MAXTableDomain
{
public
AircompressoractimeNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"AIRCOMPRESSORACTIMEID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"AIRCOMPRESSORACTIME"
,
"AIRCOMPRESSORACTIMEID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/ExportBreakerNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
java.rmi.RemoteException
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.mbo.MboValue
;
import
psdi.util.MXException
;
public
class
ExportBreakerNum
extends
MAXTableDomain
{
public
ExportBreakerNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"EXPORTBREAKERID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"EXPORTBREAKER"
,
"EXPORTBREAKERID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/FldplateNum.java
View file @
54923d23
...
@@ -16,25 +16,12 @@ public class FldplateNum extends MAXTableDomain{
...
@@ -16,25 +16,12 @@ public class FldplateNum extends MAXTableDomain{
public
FldplateNum
(
MboValue
mbv
)
{
public
FldplateNum
(
MboValue
mbv
)
{
super
(
mbv
);
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"
PLATENUM
"
};
String
[]
hz
=
{
"
SHIFTINJECTORPUMPID
"
};
String
[]
target
=
new
String
[
1
];
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"
PROTEPLATELINE"
,
"PLATENUM
=:"
+
thisname
+
" "
);
setRelationship
(
"
SHIFTINJECTORPUMP"
,
"SHIFTINJECTORPUMPID
=:"
+
thisname
+
" "
);
}
}
@Override
public
MboSetRemote
getList
()
throws
MXException
,
RemoteException
{
MboRemote
mbo
=
getMboValue
().
getMbo
();
String
PROTEPLATENUM
=
mbo
.
getString
(
"PROTEPLATENUM"
);
System
.
out
.
println
(
"PROTEP"
+
PROTEPLATENUM
);
setListCriteria
(
"PROTEPLATENUM = '"
+
PROTEPLATENUM
+
"'"
);
return
super
.
getList
();
}
}
}
src/tohi/app/rlrelaymanage/OiladjustNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboValue
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.util.MXException
;
public
class
OiladjustNum
extends
MAXTableDomain
{
public
OiladjustNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"OILADJUSTID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"OILADJUST"
,
"OILADJUSTID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/RlarresterleakNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboValue
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.util.MXException
;
public
class
RlarresterleakNum
extends
MAXTableDomain
{
public
RlarresterleakNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"RLARRESTERLEAKID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"RLARRESTERLEAK"
,
"RLARRESTERLEAKID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/RldestartupcheckNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboValue
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.util.MXException
;
public
class
RldestartupcheckNum
extends
MAXTableDomain
{
public
RldestartupcheckNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"RLDESTARTUPCHECKID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"RLDESTARTUPCHECK"
,
"RLDESTARTUPCHECKID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/RldynamoinsNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboValue
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.util.MXException
;
public
class
RldynamoinsNum
extends
MAXTableDomain
{
public
RldynamoinsNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"RLDYNAMOINSID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"RLDYNAMOINS"
,
"RLDYNAMOINSID=:"
+
thisname
+
" "
);
}
}
src/tohi/app/rlrelaymanage/RlearthcurrentNum.java
0 → 100644
View file @
54923d23
package
tohi
.
app
.
rlrelaymanage
;
import
psdi.mbo.MAXTableDomain
;
import
psdi.mbo.MboValue
;
import
psdi.mbo.MboRemote
;
import
psdi.mbo.MboSetRemote
;
import
psdi.util.MXException
;
public
class
RlearthcurrentNum
extends
MAXTableDomain
{
public
RlearthcurrentNum
(
MboValue
mbv
)
{
super
(
mbv
);
String
thisname
=
getMboValue
().
getAttributeName
();
String
[]
hz
=
{
"RLEARTHCURRENTID"
};
String
[]
target
=
new
String
[
1
];
target
[
0
]
=
thisname
;
setLookupKeyMapInOrder
(
target
,
hz
);
setRelationship
(
"RLEARTHCURRENT"
,
"RLEARTHCURRENTID=:"
+
thisname
+
" "
);
}
}
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