Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in
Toggle navigation
T
tanpu-community
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
探普后端
tanpu-community
Commits
39b09012
Commit
39b09012
authored
Aug 02, 2021
by
刘基明
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除无用代码
parent
06fb196e
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
3 additions
and
495 deletions
+3
-495
UserRistRzEntity.java
...com/tanpu/community/dao/entity/user/UserRistRzEntity.java
+0
-269
UserInfoMapper.java
...a/com/tanpu/community/dao/mapper/user/UserInfoMapper.java
+0
-16
UserRistRzMapper.java
...com/tanpu/community/dao/mapper/user/UserRistRzMapper.java
+0
-16
CommentManager.java
...main/java/com/tanpu/community/manager/CommentManager.java
+2
-0
ThemeManager.java
...c/main/java/com/tanpu/community/manager/ThemeManager.java
+1
-2
ThemeService.java
...c/main/java/com/tanpu/community/service/ThemeService.java
+0
-7
TopicService.java
...c/main/java/com/tanpu/community/service/TopicService.java
+0
-18
UserInfoService.java
...ain/java/com/tanpu/community/service/UserInfoService.java
+0
-24
UserService.java
...rc/main/java/com/tanpu/community/service/UserService.java
+0
-24
UserInfoEntityMapper.xml
...e/src/main/resources/mapper/user/UserInfoEntityMapper.xml
+0
-90
UserRistRzEntityMapper.xml
...src/main/resources/mapper/user/UserRistRzEntityMapper.xml
+0
-29
No files found.
community-service/src/main/java/com/tanpu/community/dao/entity/user/UserRistRzEntity.java
deleted
100644 → 0
View file @
06fb196e
package
com
.
tanpu
.
community
.
dao
.
entity
.
user
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
java.time.LocalDateTime
;
import
java.io.Serializable
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
/**
* <p>
*
* </p>
*
* @author xudong
* @since 2021-06-16
*/
@TableName
(
"user_rist_rz"
)
@ApiModel
(
value
=
"UserRistRzEntity对象"
,
description
=
""
)
public
class
UserRistRzEntity
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"唯一主键"
)
private
String
id
;
@ApiModelProperty
(
value
=
"用户手机号认证"
)
private
String
urrRzPhone
;
@ApiModelProperty
(
value
=
"用户手机号认证时间"
)
private
LocalDateTime
urrRzPhoneDate
;
@ApiModelProperty
(
value
=
"认证用户姓名"
)
private
String
urrRzName
;
@ApiModelProperty
(
value
=
"身份信息认证-证件类型"
)
private
String
urrRzCertType
;
@ApiModelProperty
(
value
=
"身份信息认证-证件号"
)
private
String
urrRzCertNo
;
@ApiModelProperty
(
value
=
"身份信息认证时间"
)
private
LocalDateTime
urrRzCertDate
;
@ApiModelProperty
(
value
=
"合格投资者认证关联用户记录"
)
private
String
investorCertifiedId
;
@ApiModelProperty
(
value
=
"合格投资者认证状态"
)
private
Integer
investorCertifiedStatus
;
@ApiModelProperty
(
value
=
"合格投资者认证时间"
)
private
LocalDateTime
investorCertifiedTime
;
@ApiModelProperty
(
value
=
"风险测评认证关联用户记录"
)
private
String
investorRiskrzId
;
@ApiModelProperty
(
value
=
"风险测评认证状态"
)
private
Integer
investorRiskrzStatus
;
@ApiModelProperty
(
value
=
"风险测评认证时间"
)
private
LocalDateTime
investorRiskrzTime
;
@ApiModelProperty
(
value
=
"测评到期时间"
)
private
LocalDateTime
expireTime
;
@ApiModelProperty
(
value
=
"机构ID"
)
private
String
orgId
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createtime
;
@ApiModelProperty
(
value
=
"创建人"
)
private
String
createby
;
@ApiModelProperty
(
value
=
"修改时间"
)
private
LocalDateTime
updatetime
;
@ApiModelProperty
(
value
=
"修改人"
)
private
String
updateby
;
@ApiModelProperty
(
value
=
"删除标识"
)
private
Integer
deletetag
;
public
String
getId
()
{
return
id
;
}
public
void
setId
(
String
id
)
{
this
.
id
=
id
;
}
public
String
getUrrRzPhone
()
{
return
urrRzPhone
;
}
public
void
setUrrRzPhone
(
String
urrRzPhone
)
{
this
.
urrRzPhone
=
urrRzPhone
;
}
public
LocalDateTime
getUrrRzPhoneDate
()
{
return
urrRzPhoneDate
;
}
public
void
setUrrRzPhoneDate
(
LocalDateTime
urrRzPhoneDate
)
{
this
.
urrRzPhoneDate
=
urrRzPhoneDate
;
}
public
String
getUrrRzName
()
{
return
urrRzName
;
}
public
void
setUrrRzName
(
String
urrRzName
)
{
this
.
urrRzName
=
urrRzName
;
}
public
String
getUrrRzCertType
()
{
return
urrRzCertType
;
}
public
void
setUrrRzCertType
(
String
urrRzCertType
)
{
this
.
urrRzCertType
=
urrRzCertType
;
}
public
String
getUrrRzCertNo
()
{
return
urrRzCertNo
;
}
public
void
setUrrRzCertNo
(
String
urrRzCertNo
)
{
this
.
urrRzCertNo
=
urrRzCertNo
;
}
public
LocalDateTime
getUrrRzCertDate
()
{
return
urrRzCertDate
;
}
public
void
setUrrRzCertDate
(
LocalDateTime
urrRzCertDate
)
{
this
.
urrRzCertDate
=
urrRzCertDate
;
}
public
String
getInvestorCertifiedId
()
{
return
investorCertifiedId
;
}
public
void
setInvestorCertifiedId
(
String
investorCertifiedId
)
{
this
.
investorCertifiedId
=
investorCertifiedId
;
}
public
Integer
getInvestorCertifiedStatus
()
{
return
investorCertifiedStatus
;
}
public
void
setInvestorCertifiedStatus
(
Integer
investorCertifiedStatus
)
{
this
.
investorCertifiedStatus
=
investorCertifiedStatus
;
}
public
LocalDateTime
getInvestorCertifiedTime
()
{
return
investorCertifiedTime
;
}
public
void
setInvestorCertifiedTime
(
LocalDateTime
investorCertifiedTime
)
{
this
.
investorCertifiedTime
=
investorCertifiedTime
;
}
public
String
getInvestorRiskrzId
()
{
return
investorRiskrzId
;
}
public
void
setInvestorRiskrzId
(
String
investorRiskrzId
)
{
this
.
investorRiskrzId
=
investorRiskrzId
;
}
public
Integer
getInvestorRiskrzStatus
()
{
return
investorRiskrzStatus
;
}
public
void
setInvestorRiskrzStatus
(
Integer
investorRiskrzStatus
)
{
this
.
investorRiskrzStatus
=
investorRiskrzStatus
;
}
public
LocalDateTime
getInvestorRiskrzTime
()
{
return
investorRiskrzTime
;
}
public
void
setInvestorRiskrzTime
(
LocalDateTime
investorRiskrzTime
)
{
this
.
investorRiskrzTime
=
investorRiskrzTime
;
}
public
LocalDateTime
getExpireTime
()
{
return
expireTime
;
}
public
void
setExpireTime
(
LocalDateTime
expireTime
)
{
this
.
expireTime
=
expireTime
;
}
public
String
getOrgId
()
{
return
orgId
;
}
public
void
setOrgId
(
String
orgId
)
{
this
.
orgId
=
orgId
;
}
public
LocalDateTime
getCreatetime
()
{
return
createtime
;
}
public
void
setCreatetime
(
LocalDateTime
createtime
)
{
this
.
createtime
=
createtime
;
}
public
String
getCreateby
()
{
return
createby
;
}
public
void
setCreateby
(
String
createby
)
{
this
.
createby
=
createby
;
}
public
LocalDateTime
getUpdatetime
()
{
return
updatetime
;
}
public
void
setUpdatetime
(
LocalDateTime
updatetime
)
{
this
.
updatetime
=
updatetime
;
}
public
String
getUpdateby
()
{
return
updateby
;
}
public
void
setUpdateby
(
String
updateby
)
{
this
.
updateby
=
updateby
;
}
public
Integer
getDeletetag
()
{
return
deletetag
;
}
public
void
setDeletetag
(
Integer
deletetag
)
{
this
.
deletetag
=
deletetag
;
}
@Override
public
String
toString
()
{
return
"UserRistRzEntity{"
+
"id="
+
id
+
", urrRzPhone="
+
urrRzPhone
+
", urrRzPhoneDate="
+
urrRzPhoneDate
+
", urrRzName="
+
urrRzName
+
", urrRzCertType="
+
urrRzCertType
+
", urrRzCertNo="
+
urrRzCertNo
+
", urrRzCertDate="
+
urrRzCertDate
+
", investorCertifiedId="
+
investorCertifiedId
+
", investorCertifiedStatus="
+
investorCertifiedStatus
+
", investorCertifiedTime="
+
investorCertifiedTime
+
", investorRiskrzId="
+
investorRiskrzId
+
", investorRiskrzStatus="
+
investorRiskrzStatus
+
", investorRiskrzTime="
+
investorRiskrzTime
+
", expireTime="
+
expireTime
+
", orgId="
+
orgId
+
", createtime="
+
createtime
+
", createby="
+
createby
+
", updatetime="
+
updatetime
+
", updateby="
+
updateby
+
", deletetag="
+
deletetag
+
"}"
;
}
}
community-service/src/main/java/com/tanpu/community/dao/mapper/user/UserInfoMapper.java
deleted
100644 → 0
View file @
06fb196e
package
com
.
tanpu
.
community
.
dao
.
mapper
.
user
;
import
com.tanpu.community.dao.entity.user.UserInfoEntity
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* Mapper 接口
* </p>
*
* @author xudong
* @since 2021-07-14
*/
public
interface
UserInfoMapper
extends
BaseMapper
<
UserInfoEntity
>
{
}
community-service/src/main/java/com/tanpu/community/dao/mapper/user/UserRistRzMapper.java
deleted
100644 → 0
View file @
06fb196e
package
com
.
tanpu
.
community
.
dao
.
mapper
.
user
;
import
com.tanpu.community.dao.entity.user.UserRistRzEntity
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
/**
* <p>
* Mapper 接口
* </p>
*
* @author xudong
* @since 2021-06-16
*/
public
interface
UserRistRzMapper
extends
BaseMapper
<
UserRistRzEntity
>
{
}
community-service/src/main/java/com/tanpu/community/manager/CommentManager.java
View file @
39b09012
...
...
@@ -21,6 +21,7 @@ import com.tanpu.community.util.ConvertUtil;
import
org.apache.commons.lang3.StringUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
javax.annotation.Resource
;
import
java.util.Comparator
;
...
...
@@ -117,6 +118,7 @@ public class CommentManager {
}
//举报评论
@Transactional
public
void
report
(
ReportCommentReq
req
,
String
userId
)
{
//更改举报状态
commentService
.
updateReportStatus
(
req
.
getCommentId
());
...
...
community-service/src/main/java/com/tanpu/community/manager/ThemeManager.java
View file @
39b09012
...
...
@@ -394,8 +394,6 @@ public class ThemeManager {
// 查询正文
public
ThemeQo
getThemeDetail
(
String
themeId
,
String
userId
)
{
//TODO 临时埋点,接入新埋点后删除
// visitLogService.addPageView(userId, themeId, VisitTypeEnum.THEME_PAGE_VIEW);
// 查询详情
ThemeQo
themeQo
=
redisCache
.
getObject
(
StringUtils
.
joinWith
(
"_"
,
CACHE_THEME_ID
,
themeId
),
60
,
()
->
this
.
getDetailCommon
(
themeId
),
ThemeQo
.
class
);
...
...
@@ -441,6 +439,7 @@ public class ThemeManager {
}
//举报主题
@Transactional
public
void
report
(
ReportThemeReq
req
,
String
userId
)
{
//更改举报状态
themeService
.
updateReportStatus
(
req
.
getThemeId
());
...
...
community-service/src/main/java/com/tanpu/community/service/ThemeService.java
View file @
39b09012
...
...
@@ -72,13 +72,6 @@ public class ThemeService {
.
eq
(
ThemeEntity:
:
getDeleteTag
,
DeleteTagEnum
.
NOT_DELETED
.
getCode
()));
}
public
List
<
ThemeEntity
>
queryThemesByUserId
(
String
userId
)
{
return
themeMapper
.
selectList
(
new
LambdaQueryWrapper
<
ThemeEntity
>()
.
eq
(
ThemeEntity:
:
getAuthorId
,
userId
)
.
eq
(
ThemeEntity:
:
getDeleteTag
,
DeleteTagEnum
.
NOT_DELETED
.
getCode
())
.
orderByDesc
(
ThemeEntity:
:
getId
));
}
//根据用户id查询主题list
public
List
<
ThemeEntity
>
queryThemesByUserId
(
String
userId
,
String
lastId
,
Integer
pageSize
)
{
LambdaQueryWrapper
<
ThemeEntity
>
queryWrapper
=
new
LambdaQueryWrapper
<
ThemeEntity
>()
...
...
community-service/src/main/java/com/tanpu/community/service/TopicService.java
View file @
39b09012
...
...
@@ -3,7 +3,6 @@ package com.tanpu.community.service;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper
;
import
com.tanpu.common.uuid.UuidGenHelper
;
import
com.tanpu.community.api.enums.DeleteTagEnum
;
import
com.tanpu.community.api.enums.StatusEnum
;
import
com.tanpu.community.dao.entity.community.TopicEntity
;
import
com.tanpu.community.dao.mapper.community.TopicMapper
;
...
...
@@ -11,7 +10,6 @@ import org.apache.commons.collections4.CollectionUtils;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.cache.annotation.EnableCaching
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
javax.annotation.Resource
;
import
java.util.ArrayList
;
...
...
@@ -44,24 +42,8 @@ public class TopicService {
return
retList
;
}
public
List
<
TopicEntity
>
queryByKeyword
(
String
keyword
)
{
return
topicMapper
.
selectList
(
new
LambdaQueryWrapper
<
TopicEntity
>()
.
like
(
TopicEntity:
:
getTopicTitle
,
keyword
)
.
eq
(
TopicEntity:
:
getDeleteTag
,
DeleteTagEnum
.
NOT_DELETED
.
getCode
())
.
orderByDesc
(
TopicEntity:
:
getCreateTime
));
}
@Transactional
public
void
addTopic
(
String
topicTitle
,
String
userId
)
{
TopicEntity
entity
=
TopicEntity
.
builder
()
.
topicId
(
uuidGenHelper
.
getUuidStr
())
.
topicTitle
(
topicTitle
)
.
isTop
(
StatusEnum
.
FALSE
.
getCode
())
.
isConceal
(
StatusEnum
.
FALSE
.
getCode
())
.
build
();
topicMapper
.
insert
(
entity
);
}
public
void
updateTopicToTop
(
String
topicId
)
{
...
...
community-service/src/main/java/com/tanpu/community/service/UserInfoService.java
deleted
100644 → 0
View file @
06fb196e
package
com
.
tanpu
.
community
.
service
;
import
com.tanpu.community.dao.entity.user.UserInfoEntity
;
import
com.tanpu.community.dao.mapper.user.UserInfoMapper
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
java.util.List
;
@Service
public
class
UserInfoService
{
@Resource
private
UserInfoMapper
userInfoMapper
;
public
UserInfoEntity
queryUserById
(
String
userId
)
{
return
userInfoMapper
.
selectById
(
userId
);
}
public
List
<
UserInfoEntity
>
queryUserByIds
(
List
<
String
>
ids
)
{
return
userInfoMapper
.
selectBatchIds
(
ids
);
}
}
community-service/src/main/java/com/tanpu/community/service/UserService.java
deleted
100644 → 0
View file @
06fb196e
package
com
.
tanpu
.
community
.
service
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.tanpu.community.dao.entity.user.UserRistRzEntity
;
import
com.tanpu.community.dao.mapper.user.UserRistRzMapper
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
@Slf4j
@Service
public
class
UserService
{
@Resource
private
UserRistRzMapper
userRistRzMapper
;
// 查询是否合格投资者
public
Boolean
isQualifiedInvestor
(
String
userId
)
{
UserRistRzEntity
ristRz
=
userRistRzMapper
.
selectOne
(
new
LambdaQueryWrapper
<
UserRistRzEntity
>().
eq
(
UserRistRzEntity:
:
getCreateby
,
userId
));
// todo 1代表合格
return
(
ristRz
!=
null
&&
ristRz
.
getInvestorCertifiedStatus
()
==
1
);
}
}
community-service/src/main/resources/mapper/user/UserInfoEntityMapper.xml
deleted
100644 → 0
View file @
06fb196e
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.tanpu.community.dao.mapper.user.UserInfoMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.tanpu.community.dao.entity.user.UserInfoEntity"
>
<id
column=
"id"
property=
"id"
/>
<result
column=
"user_type"
property=
"userType"
/>
<result
column=
"ui_openid"
property=
"uiOpenid"
/>
<result
column=
"ui_unionId"
property=
"uiUnionid"
/>
<result
column=
"ui_telphone"
property=
"uiTelphone"
/>
<result
column=
"ui_pwd"
property=
"uiPwd"
/>
<result
column=
"ui_nickname"
property=
"uiNickname"
/>
<result
column=
"ui_headimg"
property=
"uiHeadimg"
/>
<result
column=
"ui_username"
property=
"uiUsername"
/>
<result
column=
"ui_sex"
property=
"uiSex"
/>
<result
column=
"ui_birthday"
property=
"uiBirthday"
/>
<result
column=
"ui_introduction"
property=
"uiIntroduction"
/>
<result
column=
"ui_type_mp"
property=
"uiTypeMp"
/>
<result
column=
"ui_headimg_mp"
property=
"uiHeadimgMp"
/>
<result
column=
"ui_username_mp"
property=
"uiUsernameMp"
/>
<result
column=
"ui_telphone_mp"
property=
"uiTelphoneMp"
/>
<result
column=
"ui_mobilephone_mp"
property=
"uiMobilephoneMp"
/>
<result
column=
"ui_company_mp"
property=
"uiCompanyMp"
/>
<result
column=
"ui_company_address_mp"
property=
"uiCompanyAddressMp"
/>
<result
column=
"ui_position_mp"
property=
"uiPositionMp"
/>
<result
column=
"ui_industry_mp"
property=
"uiIndustryMp"
/>
<result
column=
"ui_email_mp"
property=
"uiEmailMp"
/>
<result
column=
"ui_introduction_mp"
property=
"uiIntroductionMp"
/>
<result
column=
"ui_wechat_qrcode"
property=
"uiWechatQrcode"
/>
<result
column=
"ui_wechat_xcx_qrcode"
property=
"uiWechatXcxQrcode"
/>
<result
column=
"ui_type"
property=
"uiType"
/>
<result
column=
"ui_shenfen"
property=
"uiShenfen"
/>
<result
column=
"ui_rzstatus"
property=
"uiRzstatus"
/>
<result
column=
"org_id"
property=
"orgId"
/>
<result
column=
"team_id"
property=
"teamId"
/>
<result
column=
"join_time"
property=
"joinTime"
/>
<result
column=
"staff_no"
property=
"staffNo"
/>
<result
column=
"investor_certified_status"
property=
"investorCertifiedStatus"
/>
<result
column=
"investor_certified_time"
property=
"investorCertifiedTime"
/>
<result
column=
"to_partner"
property=
"toPartner"
/>
<result
column=
"ui_grade"
property=
"uiGrade"
/>
<result
column=
"content_review"
property=
"contentReview"
/>
<result
column=
"ui_honor"
property=
"uiHonor"
/>
<result
column=
"ui_hb_userid"
property=
"uiHbUserid"
/>
<result
column=
"staff_region"
property=
"staffRegion"
/>
<result
column=
"branch_name"
property=
"branchName"
/>
<result
column=
"sub_branch_name"
property=
"subBranchName"
/>
<result
column=
"branch_network_name"
property=
"branchNetworkName"
/>
<result
column=
"ui_grade_name"
property=
"uiGradeName"
/>
<result
column=
"ui_target_grade_name"
property=
"uiTargetGradeName"
/>
<result
column=
"ui_source"
property=
"uiSource"
/>
<result
column=
"createtime"
property=
"createtime"
/>
<result
column=
"createby"
property=
"createby"
/>
<result
column=
"updatetime"
property=
"updatetime"
/>
<result
column=
"updateby"
property=
"updateby"
/>
<result
column=
"deletetag"
property=
"deletetag"
/>
<result
column=
"front_roles"
property=
"frontRoles"
/>
<result
column=
"ui_check_status"
property=
"uiCheckStatus"
/>
<result
column=
"city"
property=
"city"
/>
<result
column=
"province"
property=
"province"
/>
<result
column=
"country"
property=
"country"
/>
<result
column=
"ui_inviter"
property=
"uiInviter"
/>
<result
column=
"ui_inviter_phone"
property=
"uiInviterPhone"
/>
<result
column=
"ui_age"
property=
"uiAge"
/>
<result
column=
"ui_region"
property=
"uiRegion"
/>
<result
column=
"ui_wecaht"
property=
"uiWecaht"
/>
<result
column=
"ui_inviter_time"
property=
"uiInviterTime"
/>
<result
column=
"unionid"
property=
"unionid"
/>
<result
column=
"level"
property=
"level"
/>
<result
column=
"level_grade"
property=
"levelGrade"
/>
<result
column=
"age"
property=
"age"
/>
<result
column=
"district"
property=
"district"
/>
<result
column=
"address"
property=
"address"
/>
<result
column=
"education"
property=
"education"
/>
<result
column=
"wechat"
property=
"wechat"
/>
<result
column=
"high_worth_customer_num"
property=
"highWorthCustomerNum"
/>
<result
column=
"customer_asset"
property=
"customerAsset"
/>
<result
column=
"financial_planner"
property=
"financialPlanner"
/>
<result
column=
"vip_end_time"
property=
"vipEndTime"
/>
<result
column=
"ui_register_time"
property=
"uiRegisterTime"
/>
<result
column=
"ui_auth"
property=
"uiAuth"
/>
<result
column=
"ui_channel"
property=
"uiChannel"
/>
<result
column=
"review_time"
property=
"reviewTime"
/>
<result
column=
"ui_apple_userid"
property=
"uiAppleUserid"
/>
<result
column=
"ifa_no"
property=
"ifaNo"
/>
<result
column=
"realname"
property=
"realname"
/>
</resultMap>
</mapper>
community-service/src/main/resources/mapper/user/UserRistRzEntityMapper.xml
deleted
100644 → 0
View file @
06fb196e
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.tanpu.community.dao.mapper.user.UserRistRzMapper"
>
<!-- 通用查询映射结果 -->
<resultMap
id=
"BaseResultMap"
type=
"com.tanpu.community.dao.entity.user.UserRistRzEntity"
>
<id
column=
"id"
property=
"id"
/>
<result
column=
"urr_rz_phone"
property=
"urrRzPhone"
/>
<result
column=
"urr_rz_phone_date"
property=
"urrRzPhoneDate"
/>
<result
column=
"urr_rz_name"
property=
"urrRzName"
/>
<result
column=
"urr_rz_cert_type"
property=
"urrRzCertType"
/>
<result
column=
"urr_rz_cert_no"
property=
"urrRzCertNo"
/>
<result
column=
"urr_rz_cert_date"
property=
"urrRzCertDate"
/>
<result
column=
"investor_certified_id"
property=
"investorCertifiedId"
/>
<result
column=
"investor_certified_status"
property=
"investorCertifiedStatus"
/>
<result
column=
"investor_certified_time"
property=
"investorCertifiedTime"
/>
<result
column=
"investor_riskrz_id"
property=
"investorRiskrzId"
/>
<result
column=
"investor_riskrz_status"
property=
"investorRiskrzStatus"
/>
<result
column=
"investor_riskrz_time"
property=
"investorRiskrzTime"
/>
<result
column=
"expire_time"
property=
"expireTime"
/>
<result
column=
"org_id"
property=
"orgId"
/>
<result
column=
"createtime"
property=
"createtime"
/>
<result
column=
"createby"
property=
"createby"
/>
<result
column=
"updatetime"
property=
"updatetime"
/>
<result
column=
"updateby"
property=
"updateby"
/>
<result
column=
"deletetag"
property=
"deletetag"
/>
</resultMap>
</mapper>
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