Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-core
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
isc-v3.1-tmp
isc-core
Commits
c2c46d79
Commit
c2c46d79
authored
Oct 09, 2024
by
huangshunlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
即期结售汇相关 vo /bo ,sysmod获取参号
parent
413c10a7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
177 additions
and
0 deletions
+177
-0
Fxacbs.java
...ore/src/main/java/com/brilliance/isc/bo/model/Fxacbs.java
+37
-0
Fxdgrp.java
...ore/src/main/java/com/brilliance/isc/bo/model/Fxdgrp.java
+66
-0
Fxtp.java
...-core/src/main/java/com/brilliance/isc/bo/model/Fxtp.java
+40
-0
FxdBizAmdInfoVo.java
...ain/java/com/brilliance/isc/vo/funds/FxdBizAmdInfoVo.java
+15
-0
FxdBizInfoVo.java
...c/main/java/com/brilliance/isc/vo/funds/FxdBizInfoVo.java
+15
-0
SysmodService.java
.../java/com/brilliance/isc/common/sysmod/SysmodService.java
+4
-0
SysmodServiceImpl.java
.../brilliance/isc/common/sysmod/impl/SysmodServiceImpl.java
+0
-0
No files found.
isc-common-core/src/main/java/com/brilliance/isc/bo/model/Fxacbs.java
0 → 100644
View file @
c2c46d79
package
com
.
brilliance
.
isc
.
bo
.
model
;
import
com.brilliance.isc.bo.Cbb
;
import
com.brilliance.isc.common.vo.AbstractCommonVo
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.Data
;
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
Fxacbs
extends
AbstractCommonVo
{
private
Cbb
max
;
private
Cbb
nom1
;
private
Cbb
opn1
;
private
Cbb
opn2
;
@Override
public
void
reset
()
{
super
.
reset
();
if
(
max
==
null
)
{
max
=
new
Cbb
();
}
if
(
nom1
==
null
)
{
nom1
=
new
Cbb
();
}
if
(
opn1
==
null
)
{
opn1
=
new
Cbb
();
}
if
(
opn2
==
null
)
{
opn2
=
new
Cbb
();
}
}
}
isc-common-core/src/main/java/com/brilliance/isc/bo/model/Fxdgrp.java
0 → 100644
View file @
c2c46d79
package
com
.
brilliance
.
isc
.
bo
.
model
;
import
com.brilliance.isc.bo.Fxd
;
import
com.brilliance.isc.bo.Fxt
;
import
com.brilliance.isc.common.vo.AbstractCommonVo
;
import
com.brilliance.isc.common.vo.PtsptaVo
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.Data
;
/**
* @program: isc-core
* @ClassName: Fxdgrp
* @description: fxdgrp bo
* @author: huangshunlin
* @create: 2024-10-09 11:23
*/
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
Fxdgrp
extends
AbstractCommonVo
{
private
Fxd
rec
;
private
Fxt
blk
;
private
Fxacbs
cbs
;
private
PtsptaVo
apl
;
private
PtsptaVo
act
;
private
PtsptaVo
age
;
private
PtsptaVo
acc
;
@Override
public
void
reset
()
{
super
.
reset
();
if
(
rec
==
null
)
{
rec
=
new
Fxd
();
}
if
(
blk
==
null
)
{
blk
=
new
Fxt
();
}
if
(
cbs
==
null
)
{
cbs
=
new
Fxacbs
();
}
cbs
.
reset
();
if
(
apl
==
null
)
{
apl
=
new
PtsptaVo
();
}
apl
.
reset
();
if
(
act
==
null
)
{
act
=
new
PtsptaVo
();
}
act
.
reset
();
if
(
age
==
null
)
{
age
=
new
PtsptaVo
();
}
age
.
reset
();
if
(
acc
==
null
)
{
acc
=
new
PtsptaVo
();
}
acc
.
reset
();
}
}
isc-common-core/src/main/java/com/brilliance/isc/bo/model/Fxtp.java
0 → 100644
View file @
c2c46d79
package
com
.
brilliance
.
isc
.
bo
.
model
;
import
com.brilliance.isc.common.vo.AbstractCommonVo
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.Data
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
static
com
.
brilliance
.
mda
.
runtime
.
mda
.
Constants
.
NULLSTR
;
/**
*
*/
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
Fxtp
extends
AbstractCommonVo
{
private
static
Logger
log
=
LoggerFactory
.
getLogger
(
Fxtp
.
class
);
//Amount Label (max=30)
private
String
amtlab
=
NULLSTR
;
//Amount LabelCNY (max=30)
private
String
cnylab
=
NULLSTR
;
//Quote Flag (max=1)
private
String
quoflg
=
NULLSTR
;
//钞汇标志 (max=1)
private
String
cshflg
=
NULLSTR
;
//Calculate (max=1)
private
String
calflg
=
NULLSTR
;
//外币 (max=1)
private
String
frgchk
=
NULLSTR
;
//人民币 (max=1)
private
String
cnychk
=
NULLSTR
;
@Override
public
void
reset
()
{
super
.
reset
();
}
}
\ No newline at end of file
isc-common-core/src/main/java/com/brilliance/isc/vo/funds/FxdBizAmdInfoVo.java
0 → 100644
View file @
c2c46d79
package
com
.
brilliance
.
isc
.
vo
.
funds
;
import
com.brilliance.isc.common.vo.BizInfoVo
;
import
lombok.Data
;
/**
* @program: isc-core
* @ClassName: FxdBizAmdInfoVo
* @description: fxd 修改业务数据
* @author: huangshunlin
* @create: 2024-10-09 17:40
*/
@Data
public
class
FxdBizAmdInfoVo
extends
BizInfoVo
{
}
isc-common-core/src/main/java/com/brilliance/isc/vo/funds/FxdBizInfoVo.java
0 → 100644
View file @
c2c46d79
package
com
.
brilliance
.
isc
.
vo
.
funds
;
import
com.brilliance.isc.common.vo.BizInfoVo
;
import
lombok.Data
;
/**
* @program: isc-core
* @ClassName: FxdBizInfoVo
* @description: fxd业务数据
* @author: huangshunlin
* @create: 2024-10-09 17:40
*/
@Data
public
class
FxdBizInfoVo
extends
BizInfoVo
{
}
isc-common-service/src/main/java/com/brilliance/isc/common/sysmod/SysmodService.java
View file @
c2c46d79
...
@@ -159,4 +159,8 @@ public interface SysmodService {
...
@@ -159,4 +159,8 @@ public interface SysmodService {
boolean
sptIsPenLoaded
(
String
sptState
);
boolean
sptIsPenLoaded
(
String
sptState
);
boolean
sptIsCorLoaded
(
String
sptState
);
boolean
sptIsCorLoaded
(
String
sptState
);
String
getRef
(
String
stRnTbl
,
int
nLen
);
void
getPtyAccMng
(
String
ptyinr
,
String
argPtspta
,
String
rol
,
String
fileds
,
Argument
<
String
>
accmng
,
Argument
<
String
>
hdbch
);
}
}
isc-common-service/src/main/java/com/brilliance/isc/common/sysmod/impl/SysmodServiceImpl.java
View file @
c2c46d79
This diff is collapsed.
Click to expand it.
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