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
225875b8
Commit
225875b8
authored
Oct 16, 2024
by
zhoujunpeng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
头寸调拨确认交易
parent
88c40c95
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
139 additions
and
4 deletions
+139
-4
Ftt.java
isc-common-core/src/main/java/com/brilliance/isc/bo/Ftt.java
+27
-0
Ftacbs.java
...ore/src/main/java/com/brilliance/isc/bo/model/Ftacbs.java
+37
-0
Ftdgrp.java
...ore/src/main/java/com/brilliance/isc/bo/model/Ftdgrp.java
+38
-3
Fttp.java
...-core/src/main/java/com/brilliance/isc/bo/model/Fttp.java
+36
-0
ftdselMapper.xml
isc-common-core/src/main/resources/mapper/ftdselMapper.xml
+1
-1
No files found.
isc-common-core/src/main/java/com/brilliance/isc/bo/Ftt.java
0 → 100644
View file @
225875b8
package
com
.
brilliance
.
isc
.
bo
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.Data
;
import
static
com
.
brilliance
.
mda
.
runtime
.
mda
.
Constants
.
NULLSTR
;
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
Ftt
{
//Internal Unique ID of Import L/C
private
String
inr
=
NULLSTR
;
//remark
private
String
remark
=
NULLSTR
;
//incoming tag 72
private
String
contag72
=
NULLSTR
;
//incoming tag 79
private
String
contag79
=
NULLSTR
;
}
isc-common-core/src/main/java/com/brilliance/isc/bo/model/Ftacbs.java
0 → 100644
View file @
225875b8
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
Ftacbs
extends
AbstractCommonVo
{
private
Cbb
max
;
private
Cbb
opn1
;
private
Cbb
opn2
;
private
Cbb
ins
;
@Override
public
void
reset
()
{
super
.
reset
();
if
(
max
==
null
)
{
max
=
new
Cbb
();
}
if
(
ins
==
null
)
{
ins
=
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/Ftdgrp.java
View file @
225875b8
...
@@ -2,7 +2,8 @@ package com.brilliance.isc.bo.model;
...
@@ -2,7 +2,8 @@ package com.brilliance.isc.bo.model;
import
com.brilliance.isc.bo.Cbb
;
import
com.brilliance.isc.bo.Cbb
;
import
com.brilliance.isc.bo.Ftd
;
import
com.brilliance.isc.bo.Ftd
;
import
com.brilliance.isc.common.vo.AbstractCommonVo
;
import
com.brilliance.isc.bo.Ftt
;
import
com.brilliance.isc.common.vo.AbstractCommonVo
;
import
com.brilliance.isc.common.vo.PtsptaVo
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -12,7 +13,19 @@ import lombok.Data;
...
@@ -12,7 +13,19 @@ import lombok.Data;
public
class
Ftdgrp
extends
AbstractCommonVo
{
public
class
Ftdgrp
extends
AbstractCommonVo
{
private
Ftd
rec
;
private
Ftd
rec
;
private
Fxacbs
cbs
;
private
Ftt
blk
;
private
Ftacbs
cbs
;
private
PtsptaVo
tro
;
private
PtsptaVo
tri
;
private
PtsptaVo
act
;
private
PtsptaVo
ben
;
private
PtsptaVo
apl
;
private
Cbb
cbb
;
private
Cbb
cbb
;
@Override
@Override
...
@@ -24,8 +37,30 @@ public class Ftdgrp extends AbstractCommonVo {
...
@@ -24,8 +37,30 @@ public class Ftdgrp extends AbstractCommonVo {
cbb
=
new
Cbb
();
cbb
=
new
Cbb
();
}
}
if
(
cbs
==
null
){
if
(
cbs
==
null
){
cbs
=
new
F
x
acbs
();
cbs
=
new
F
t
acbs
();
}
}
cbb
.
reset
();
cbb
.
reset
();
if
(
tro
==
null
){
tro
=
new
PtsptaVo
();
}
tro
.
reset
();
if
(
tri
==
null
){
tri
=
new
PtsptaVo
();
}
tri
.
reset
();
if
(
act
==
null
){
act
=
new
PtsptaVo
();
}
act
.
reset
();
if
(
ben
==
null
){
ben
=
new
PtsptaVo
();
}
ben
.
reset
();
if
(
apl
==
null
){
apl
=
new
PtsptaVo
();
}
apl
.
reset
();
}
}
}
}
isc-common-core/src/main/java/com/brilliance/isc/bo/model/Fttp.java
0 → 100644
View file @
225875b8
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
Fttp
extends
AbstractCommonVo
{
private
static
Logger
log
=
LoggerFactory
.
getLogger
(
Fttp
.
class
);
//Status E-nable, D-isable, I-nvisible
//TDSetter(max=1)
private
String
pansta
=
NULLSTR
;
//Get Ref
// private transient IControl butgetref = new ControlImpl("butgetref", "Get Ref", this);
//Trade-out Account
//TDSetter (max=34)
private
String
troact
=
NULLSTR
;
//Trade-in Account TDSetter(max=34)
private
String
triact
=
NULLSTR
;
//Message Type (max=3)
private
String
msgtyp
=
NULLSTR
;
//Ben Trade-in Account (max=34)
private
String
benact
=
NULLSTR
;
//BANKTYP flag (max=1)
private
String
bnaktypflg
=
NULLSTR
;
@Override
public
void
reset
()
{
super
.
reset
();
}
}
isc-common-core/src/main/resources/mapper/ftdselMapper.xml
View file @
225875b8
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
inr,ownref,nam,opndat,valdat,cnfdat,matdat,clsdat,ownusr,ver,branchinr,bchkeyinr,fttyp,rat,cntfra,
inr,ownref,nam,opndat,valdat,cnfdat,matdat,clsdat,ownusr,ver,branchinr,bchkeyinr,fttyp,rat,cntfra,
usr,bnktyp,etyextkey,gzno
,cur,amt
usr,bnktyp,etyextkey,gzno
</sql>
</sql>
...
...
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