2019.8.6日报

前言

2019.8.6日报

1.反洗钱基本信息录入

1.1 前端

前端字段较多,需要仔细核对,截图展示一部分

1.1.1 前端页面

1565062555309

1.1.2 页面说明

1.1.2.1【开户-确认】按钮说明

页面必须输入项目检查成功后,把数据分别存入:

  • 场外代销账户类申报表otc_tagentaccountapp(会有字段冗余,页面上有项目保存到对应字段即可)
  • otc_tamlsuitableapp
  • otc_tamlbeneficiaryapp
  • otc_tamlshareholderapp
  • otc_tcrsmaininfoapp
  • otc_tcrscontrollerapp
  • otc_tcrstaxpayerapp
  • otc_tcrsmaiTotaxpayerapp
  • otc_tcrscontrollerTotaxpayerapp

页面上的文件先通过bg的文件上传接口临时保存到ftp上以当前日期命名的文件夹里,点【开户-确认】时正式上传到销售机构的ftp上(文件名需要按照文件规则重名称,注意有2个ftp,一个是机构通临时存放文件的ftp)。

1.2 后端

1.2.1 数据库

所有数据针对申报表

  • 数据库表: 反洗钱与适当性信息明细申报表
  • 表名: otc_tamlsuitableapp
  • 表备注: 反洗钱与适当性信息明细申报表,存放反洗钱基本信息和适当性的内容。

1.2.2 DTO/DO/Convertor…

使用生成工具mybatis-generator

1
2
3
<table tableName="otc_tamlsuitableapp" domainObjectName="AmlSuitablAapp">
<property name="subPackage" value="business.basis"/>
</table>

1.2.3 业务逻辑实现

注意添加事务处理,具体过程略,实现?

2.(反洗钱)受益人信息

2.1 前端

前端页面如下

1565070320840

2.2 后端

2.2.1 数据库

  • 数据库表: 反洗钱受益人申报明细表
  • 表名: otc_tamlbeneficiaryapp
  • 表注释: 反洗钱受益人申报明细表

2.2.2 DTO/DO/Convertor…

使用生成工具mybatis-generator

1
2
3
4
5
<table
tableName="otc_tamlbeneficiaryapp"
domainObjectName="AmlBeneficiaryApp">
<property name="subPackage" value="business.basis"/>
</table>

2.2.3 业务逻辑实现

注意添加事务处理,具体过程略,实现?

3.(反洗钱)股东信息

3.1 前端

前端页面如下

1565071210046

3.2 后端

3.2.1 数据库

  • 数据库表: 反洗钱股东信息申报明细表
  • 表名: otc_tamlshareholderapp
  • 表注释: (反洗钱)股东信息

3.2.2 DTO/DO/Convertor…

使用生成工具mybatis-generator

1
2
3
4
5
<table 
tableName="otc_tamlshareholderapp"
domainObjectName="amlShareHolderApp">
<property name="subPackage" value="business.basis"/>
</table>

3.2.3 业务逻辑实现

注意添加事务处理,具体过程略,实现?

发布了7049 篇原创文章 · 获赞 470 · 访问量 66万+

猜你喜欢

转载自blog.csdn.net/cpongo3/article/details/98633136