Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yd-backend
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AutogeneralShanghai
yd-backend
Commits
aa51ae7c
Commit
aa51ae7c
authored
Sep 19, 2023
by
wenyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
电子报聘邀请链接2
parent
9b8af942
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
407 additions
and
18 deletions
+407
-18
yd-api/src/main/java/com/yd/api/practitioner/PractitionerArticleController.java
+12
-10
yd-api/src/main/java/com/yd/api/practitioner/PractitionerController.java
+18
-8
yd-api/src/main/java/com/yd/api/practitioner/service/PractitionerService.java
+6
-0
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
+0
-0
yd-api/src/main/java/com/yd/dal/entity/systemMessage/AclSystemMessage.java
+204
-0
yd-api/src/main/java/com/yd/dal/mapper/customer/AclPractitionerMapper.java
+2
-0
yd-api/src/main/java/com/yd/dal/mapper/systemMessage/AclSystemMessageMapper.java
+15
-0
yd-api/src/main/java/com/yd/dal/service/customer/AclPractitionerDALService.java
+2
-0
yd-api/src/main/java/com/yd/dal/service/customer/impl/AclPractitionerDALServiceImpl.java
+5
-0
yd-api/src/main/java/com/yd/dal/service/systemMessage/AclSystemMessageService.java
+13
-0
yd-api/src/main/java/com/yd/dal/service/systemMessage/Impl/AclSystemMessageServiceImpl.java
+34
-0
yd-api/src/main/resources/mapper/customer/AclPractitionerMapper.xml
+19
-0
yd-api/src/main/resources/mapper/systemMessage/AclSystemMessageMapper.xml
+77
-0
No files found.
yd-api/src/main/java/com/yd/api/practitioner/PractitionerArticleController.java
View file @
aa51ae7c
package
com
.
yd
.
api
.
practitioner
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
com.yd.api.practitioner.service.PractitionerArticleService
;
import
com.yd.api.practitioner.vo.ArticleTrackSaveResponseVO
;
import
com.yd.api.practitioner.vo.article.ArticleShareCodeSaveRequestVO
;
...
...
@@ -7,11 +14,6 @@ import com.yd.api.practitioner.vo.article.ArticleShareCodeSaveResponseVO;
import
com.yd.api.practitioner.vo.article.ArticleTrackQueryResponseVO
;
import
com.yd.api.practitioner.vo.article.ArticleTrackSaveRequestVO
;
import
com.yd.api.result.JsonResult
;
import
org.apache.ibatis.annotations.Param
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
javax.annotation.Resource
;
@RestController
@RequestMapping
(
"/practitionerArticle"
)
...
...
@@ -25,8 +27,8 @@ public class PractitionerArticleController {
@RequestMapping
(
"/articleShareCodeSave"
)
public
Object
articleShareCodeSave
(
@RequestBody
ArticleShareCodeSaveRequestVO
requestVO
){
JsonResult
result
=
new
JsonResult
();
System
.
out
.
println
(
"分享文章保存"
);
System
.
out
.
println
(
requestVO
.
toString
());
//
System.out.println("分享文章保存");
//
System.out.println(requestVO.toString());
ArticleShareCodeSaveResponseVO
responseVO
=
practitionerArticleService
.
articleShareCodeSave
(
requestVO
);
result
.
addResult
(
responseVO
);
result
.
setData
(
responseVO
);
...
...
@@ -38,8 +40,8 @@ public class PractitionerArticleController {
*/
@RequestMapping
(
"/articleTrackSave"
)
public
Object
articleTrackSave
(
@RequestBody
ArticleTrackSaveRequestVO
requestVO
){
System
.
out
.
println
(
"客户文章跟踪信息保存"
);
System
.
out
.
println
(
requestVO
.
toString
());
//
System.out.println("客户文章跟踪信息保存");
//
System.out.println(requestVO.toString());
JsonResult
result
=
new
JsonResult
();
ArticleTrackSaveResponseVO
responseVO
=
practitionerArticleService
.
articleTrackSave
(
requestVO
);
result
.
addResult
(
responseVO
);
...
...
@@ -53,7 +55,7 @@ public class PractitionerArticleController {
@RequestMapping
(
value
=
"/articleTrackQuery"
,
method
=
RequestMethod
.
GET
)
public
Object
articleTrackQuery
(
@RequestParam
(
"practitionerId"
)
Long
practitionerId
,
@RequestParam
(
"sharingId"
)
Long
sharingId
){
System
.
out
.
println
(
"客户文章跟踪信息查询"
);
//
System.out.println("客户文章跟踪信息查询");
JsonResult
result
=
new
JsonResult
();
ArticleTrackQueryResponseVO
responseVO
=
practitionerArticleService
.
articleTrackQuery
(
practitionerId
,
sharingId
);
result
.
addResult
(
responseVO
);
...
...
yd-api/src/main/java/com/yd/api/practitioner/PractitionerController.java
View file @
aa51ae7c
package
com
.
yd
.
api
.
practitioner
;
import
com.yd.api.practitioner.vo.QueryCanSeeResponseVO
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.PathVariable
;
...
...
@@ -13,6 +12,7 @@ import com.yd.api.practitioner.service.PractitionerBasicInfoService;
import
com.yd.api.practitioner.service.PractitionerService
;
import
com.yd.api.practitioner.service.ScheduleTrackService
;
import
com.yd.api.practitioner.vo.PractitionerIdRequestVO
;
import
com.yd.api.practitioner.vo.QueryCanSeeResponseVO
;
import
com.yd.api.practitioner.vo.businessCard.PractitionerApplyEmailRequestVO
;
import
com.yd.api.practitioner.vo.businessCard.PractitionerBusinessCardRequestVO
;
import
com.yd.api.practitioner.vo.businessCard.PractitionerBusinessCardResponseVO
;
...
...
@@ -118,10 +118,8 @@ import com.yd.api.result.CommonResultIDResponseVO;
import
com.yd.api.result.CommonResultResponseVO
;
import
com.yd.api.result.IDRequestVO
;
import
com.yd.api.result.JsonResult
;
import
com.yd.rmi.n22.policy.service.N22PolicyService
;
import
com.yd.rmi.n22.salary.pojo.searchstaffsalarydetails.SearchStaffSalaryDetailsRequestBody
;
import
com.yd.rmi.n22.salary.pojo.searchstaffsalarydetails.SearchStaffSalaryDetailsResponseBody
;
import
com.yd.rmi.n22.staff.service.N22StaffService
;
@Controller
...
...
@@ -135,10 +133,10 @@ public class PractitionerController {
private
PractitionerBasicInfoService
practitionerBasicInfoService
;
@Autowired
private
ScheduleTrackService
scheduleTrackService
;
@Autowired
private
N22PolicyService
n22PolicyService
;
@Autowired
private
N22StaffService
n22StaffService
;
//
@Autowired
//
private N22PolicyService n22PolicyService;
//
@Autowired
//
private N22StaffService n22StaffService;
/**
* 经纪人登录
* @param requestVO 请求数据
...
...
@@ -261,7 +259,19 @@ public class PractitionerController {
result
.
setData
(
responseVO
);
return
result
;
}
/**
* 微信链接邀请--新增增员
* @param requestVO 请求数据
* @return 响应数据
*/
@RequestMapping
(
"/wxUrlRecruit"
)
public
Object
wxUrlRecruit
(
@RequestBody
RecruitRequestVO
requestVO
){
JsonResult
result
=
new
JsonResult
();
RecruitResponseVO
responseVO
=
practitionerService
.
wxUrlRecruit
(
requestVO
);
result
.
addResult
(
responseVO
);
result
.
setData
(
responseVO
);
return
result
;
}
/***
* 经纪人-经纪人查询自己的商机详情查询
* @param requestVO 请求数据
...
...
yd-api/src/main/java/com/yd/api/practitioner/service/PractitionerService.java
View file @
aa51ae7c
...
...
@@ -95,6 +95,12 @@ public interface PractitionerService {
*/
RecruitResponseVO
recruit
(
RecruitRequestVO
requestVO
);
/**
* 微信链接邀请--新增增员
* @param requestVO 请求信息
* @return responseVO
*/
RecruitResponseVO
wxUrlRecruit
(
RecruitRequestVO
requestVO
);
/**
* 团队长--新增增员记录
* @param requestVO 请求信息
* @return responseVO
...
...
yd-api/src/main/java/com/yd/api/practitioner/service/impl/PractitionerServiceImpl.java
View file @
aa51ae7c
This diff is collapsed.
Click to expand it.
yd-api/src/main/java/com/yd/dal/entity/systemMessage/AclSystemMessage.java
0 → 100644
View file @
aa51ae7c
package
com
.
yd
.
dal
.
entity
.
systemMessage
;
import
java.util.Date
;
public
class
AclSystemMessage
{
private
static
final
long
serialVersionUID
=
1L
;
private
Long
id
;
//serial idPRIauto_increment
private
Long
practitionerId
;
//practitioner_id
private
Long
customerId
;
//经纪人customerId
private
Long
userId
;
//cffp userid
private
Integer
systemType
;
//系统类型 0=银盾,1=cffp
private
Integer
type
;
//0=系统通知 1=银盾学院课程推送消息
private
String
title
;
private
String
context
;
//消息内容
private
Integer
isRead
;
//0=未读 1=已读
private
Integer
isActive
;
//1=active 2=inactive
private
String
remark
;
//备注
private
Date
createdAt
;
//创建时间
private
Long
createdBy
;
//FK ag_acl_user.id
private
Date
updatedAt
;
//修改时间
private
Long
updatedBy
;
//FK ag_acl_user.id
/**
* @return the id
*/
public
Long
getId
()
{
return
id
;
}
/**
* @param id the id to set
*/
public
void
setId
(
Long
id
)
{
this
.
id
=
id
;
}
/**
* @return the practitionerId
*/
public
Long
getPractitionerId
()
{
return
practitionerId
;
}
/**
* @param practitionerId the practitionerId to set
*/
public
void
setPractitionerId
(
Long
practitionerId
)
{
this
.
practitionerId
=
practitionerId
;
}
/**
* @return the customerId
*/
public
Long
getCustomerId
()
{
return
customerId
;
}
/**
* @param customerId the customerId to set
*/
public
void
setCustomerId
(
Long
customerId
)
{
this
.
customerId
=
customerId
;
}
/**
* @return the userId
*/
public
Long
getUserId
()
{
return
userId
;
}
/**
* @param userId the userId to set
*/
public
void
setUserId
(
Long
userId
)
{
this
.
userId
=
userId
;
}
/**
* @return the systemType
*/
public
Integer
getSystemType
()
{
return
systemType
;
}
/**
* @param systemType the systemType to set
*/
public
void
setSystemType
(
Integer
systemType
)
{
this
.
systemType
=
systemType
;
}
/**
* @return the type
*/
public
Integer
getType
()
{
return
type
;
}
/**
* @param type the type to set
*/
public
void
setType
(
Integer
type
)
{
this
.
type
=
type
;
}
/**
* @return the title
*/
public
String
getTitle
()
{
return
title
;
}
/**
* @param title the title to set
*/
public
void
setTitle
(
String
title
)
{
this
.
title
=
title
;
}
/**
* @return the context
*/
public
String
getContext
()
{
return
context
;
}
/**
* @param context the context to set
*/
public
void
setContext
(
String
context
)
{
this
.
context
=
context
;
}
/**
* @return the isRead
*/
public
Integer
getIsRead
()
{
return
isRead
;
}
/**
* @param isRead the isRead to set
*/
public
void
setIsRead
(
Integer
isRead
)
{
this
.
isRead
=
isRead
;
}
/**
* @return the isActive
*/
public
Integer
getIsActive
()
{
return
isActive
;
}
/**
* @param isActive the isActive to set
*/
public
void
setIsActive
(
Integer
isActive
)
{
this
.
isActive
=
isActive
;
}
/**
* @return the remark
*/
public
String
getRemark
()
{
return
remark
;
}
/**
* @param remark the remark to set
*/
public
void
setRemark
(
String
remark
)
{
this
.
remark
=
remark
;
}
/**
* @return the createdAt
*/
public
Date
getCreatedAt
()
{
return
createdAt
;
}
/**
* @param createdAt the createdAt to set
*/
public
void
setCreatedAt
(
Date
createdAt
)
{
this
.
createdAt
=
createdAt
;
}
/**
* @return the createdBy
*/
public
Long
getCreatedBy
()
{
return
createdBy
;
}
/**
* @param createdBy the createdBy to set
*/
public
void
setCreatedBy
(
Long
createdBy
)
{
this
.
createdBy
=
createdBy
;
}
/**
* @return the updatedAt
*/
public
Date
getUpdatedAt
()
{
return
updatedAt
;
}
/**
* @param updatedAt the updatedAt to set
*/
public
void
setUpdatedAt
(
Date
updatedAt
)
{
this
.
updatedAt
=
updatedAt
;
}
/**
* @return the updatedBy
*/
public
Long
getUpdatedBy
()
{
return
updatedBy
;
}
/**
* @param updatedBy the updatedBy to set
*/
public
void
setUpdatedBy
(
Long
updatedBy
)
{
this
.
updatedBy
=
updatedBy
;
}
}
yd-api/src/main/java/com/yd/dal/mapper/customer/AclPractitionerMapper.java
View file @
aa51ae7c
...
...
@@ -160,4 +160,6 @@ public interface AclPractitionerMapper {
List
<
Certificate
>
findCertificate
(
List
<
Long
>
certIdList
);
List
<
PractitionerInfo
>
findPractitionerInfoByIdList
(
List
<
Long
>
idList
);
List
<
PractitionerInfo
>
findPractitionerInfoById
(
@Param
(
"practitionerId"
)
Long
practitionerId
);
}
yd-api/src/main/java/com/yd/dal/mapper/systemMessage/AclSystemMessageMapper.java
0 → 100644
View file @
aa51ae7c
package
com
.
yd
.
dal
.
mapper
.
systemMessage
;
import
com.yd.dal.entity.systemMessage.AclSystemMessage
;
public
interface
AclSystemMessageMapper
{
int
deleteByPrimaryKey
(
Long
id
);
int
insert
(
AclSystemMessage
aclSystemMessage
);
AclSystemMessage
selectByPrimaryKey
(
Long
id
);
int
updateByPrimaryKey
(
AclSystemMessage
aclSystemMessage
);
}
\ No newline at end of file
yd-api/src/main/java/com/yd/dal/service/customer/AclPractitionerDALService.java
View file @
aa51ae7c
...
...
@@ -221,6 +221,8 @@ public interface AclPractitionerDALService {
List
<
PractitionerInfo
>
findPractitionerInfoByMobileList
(
List
<
String
>
mobileList
);
List
<
PractitionerInfo
>
findPractitionerInfoByIdList
(
List
<
Long
>
idList
);
List
<
PractitionerInfo
>
findPractitionerInfoById
(
Long
practitionerId
);
List
<
PayScaleInfo
>
queryEGHistorySalaryPDFByPractitionerId
(
Long
practitionerId
);
...
...
yd-api/src/main/java/com/yd/dal/service/customer/impl/AclPractitionerDALServiceImpl.java
View file @
aa51ae7c
...
...
@@ -273,6 +273,11 @@ public class AclPractitionerDALServiceImpl implements AclPractitionerDALService
}
@Override
public
List
<
PractitionerInfo
>
findPractitionerInfoById
(
Long
practitionerId
)
{
return
aclPractitionerMapper
.
findPractitionerInfoById
(
practitionerId
);
}
@Override
public
List
<
PayScaleInfo
>
queryEGHistorySalaryPDFByPractitionerId
(
Long
practitionerId
)
{
return
aclPractitionerMapper
.
queryEGHistorySalaryPDFByPractitionerId
(
practitionerId
);
}
...
...
yd-api/src/main/java/com/yd/dal/service/systemMessage/AclSystemMessageService.java
0 → 100644
View file @
aa51ae7c
package
com
.
yd
.
dal
.
service
.
systemMessage
;
import
com.yd.dal.entity.systemMessage.AclSystemMessage
;
public
interface
AclSystemMessageService
{
AclSystemMessage
findById
(
Long
id
);
void
save
(
AclSystemMessage
aclSystemMessage
);
void
update
(
AclSystemMessage
aclSystemMessage
);
}
yd-api/src/main/java/com/yd/dal/service/systemMessage/Impl/AclSystemMessageServiceImpl.java
0 → 100644
View file @
aa51ae7c
package
com
.
yd
.
dal
.
service
.
systemMessage
.
Impl
;
import
javax.annotation.Resource
;
import
org.springframework.stereotype.Service
;
import
com.yd.dal.entity.systemMessage.AclSystemMessage
;
import
com.yd.dal.mapper.systemMessage.AclSystemMessageMapper
;
import
com.yd.dal.service.systemMessage.AclSystemMessageService
;
@Service
(
"aclSystemMessageService"
)
public
class
AclSystemMessageServiceImpl
implements
AclSystemMessageService
{
@Resource
private
AclSystemMessageMapper
aclSystemMessageMapper
;
@Override
public
AclSystemMessage
findById
(
Long
id
)
{
return
aclSystemMessageMapper
.
selectByPrimaryKey
(
id
);
}
public
void
save
(
AclSystemMessage
aclSystemMessage
)
{
if
(
aclSystemMessage
.
getId
()
!=
null
){
aclSystemMessageMapper
.
insert
(
aclSystemMessage
);
}
else
{
aclSystemMessageMapper
.
updateByPrimaryKey
(
aclSystemMessage
);
}
}
@Override
public
void
update
(
AclSystemMessage
aclSystemMessage
)
{
aclSystemMessageMapper
.
updateByPrimaryKey
(
aclSystemMessage
);
}
}
yd-api/src/main/resources/mapper/customer/AclPractitionerMapper.xml
View file @
aa51ae7c
...
...
@@ -2161,4 +2161,23 @@
and t.is_active = 1
</select>
<select
id=
"findPractitionerInfoById"
resultMap=
"practitioner_info_map"
>
select
p.customer_id as customerId,
p.id as practitionerId,
p.name as name,
p.gender as gender,
p.subordinate_system_id as subordinateId,
p.wechat_id as weChatId,
p.qq_id as qqId,
p.practitioner_reg_no as practitionerRegNo,
p.mobile_no,
p.mentor_id mentorId,
c.yd_wechat_openid
from ag_acl_practitioner p
left join ag_acl_customer c on c.id = p.customer_id
where p.id = #{practitionerId}
and p.is_active = 1
</select>
</mapper>
yd-api/src/main/resources/mapper/systemMessage/AclSystemMessageMapper.xml
0 → 100644
View file @
aa51ae7c
<?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.yd.dal.mapper.systemMessage.AclSystemMessageMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"com.yd.dal.entity.systemMessage.AclSystemMessage"
>
<!--@mbg.generated-->
<!--@Table ag_acl_system_message-->
<id
column=
"id"
jdbcType=
"BIGINT"
property=
"id"
/>
<result
column=
"practitioner_id"
jdbcType=
"BIGINT"
property=
"practitionerId"
/>
<result
column=
"customer_id"
jdbcType=
"BIGINT"
property=
"customerId"
/>
<result
column=
"user_id"
jdbcType=
"BIGINT"
property=
"userId"
/>
<result
column=
"system_type"
jdbcType=
"INTEGER"
property=
"systemType"
/>
<result
column=
"type"
jdbcType=
"INTEGER"
property=
"type"
/>
<result
column=
"title"
jdbcType=
"VARCHAR"
property=
"title"
/>
<result
column=
"context"
jdbcType=
"VARCHAR"
property=
"context"
/>
<result
column=
"is_read"
jdbcType=
"INTEGER"
property=
"isRead"
/>
<result
column=
"is_active"
jdbcType=
"INTEGER"
property=
"isActive"
/>
<result
column=
"remark"
jdbcType=
"VARCHAR"
property=
"remark"
/>
<result
column=
"created_at"
jdbcType=
"TIMESTAMP"
property=
"createdAt"
/>
<result
column=
"created_by"
jdbcType=
"BIGINT"
property=
"createdBy"
/>
<result
column=
"updated_at"
jdbcType=
"TIMESTAMP"
property=
"updatedAt"
/>
<result
column=
"updated_by"
jdbcType=
"BIGINT"
property=
"updatedBy"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
<!--@mbg.generated-->
id, practitioner_id, customer_id, user_id, system_type, type, title, context,
is_read, is_active, remark,
created_at, created_by, updated_at, updated_by
</sql>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
<!--@mbg.generated-->
select
<include
refid=
"Base_Column_List"
/>
from ag_acl_system_message
where id = #{id,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
<!--@mbg.generated-->
delete from ag_acl_system_message
where id = #{id,jdbcType=BIGINT}
</delete>
<insert
id=
"insert"
keyColumn=
"id"
keyProperty=
"id"
parameterType=
"com.yd.dal.entity.systemMessage.AclSystemMessage"
useGeneratedKeys=
"true"
>
<!--@mbg.generated-->
insert into ag_acl_system_message (practitioner_id, customer_id, user_id, system_type, type, title, context,
is_read, is_active, remark,
created_at, created_by, updated_at, updated_by)
values (#{practitionerId,jdbcType=BIGINT}, #{customerId,jdbcType=BIGINT}, #{userId,jdbcType=BIGINT},
#{systemType,jdbcType=INTEGER},#{type,jdbcType=INTEGER},
#{title,jdbcType=VARCHAR}, #{context,jdbcType=VARCHAR},
#{isRead,jdbcType=INTEGER},#{isActive,jdbcType=INTEGER},
#{remark,jdbcType=VARCHAR},
#{createdAt,jdbcType=TIMESTAMP}, #{createdBy,jdbcType=BIGINT}, #{updatedAt,jdbcType=TIMESTAMP},
#{updatedBy,jdbcType=BIGINT})
</insert>
<update
id=
"updateByPrimaryKey"
parameterType=
"com.yd.dal.entity.systemMessage.AclSystemMessage"
>
<!--@mbg.generated-->
update ag_acl_system_message
set practitioner_id = #{practitionerId,jdbcType=BIGINT},
customer_id = #{customerId,jdbcType=BIGINT},
user_id = #{userId,jdbcType=BIGINT},
system_type = #{systemType,jdbcType=INTEGER},
type = #{type,jdbcType=INTEGER},
title = #{title,jdbcType=VARCHAR},
context= #{context,jdbcType=VARCHAR},
is_read = #{isRead,jdbcType=INTEGER},
is_active = #{isActive,jdbcType=INTEGER},
remark = #{remark,jdbcType=VARCHAR},
created_at = #{createdAt,jdbcType=TIMESTAMP},
created_by = #{createdBy,jdbcType=BIGINT},
updated_at = #{updatedAt,jdbcType=TIMESTAMP},
updated_by = #{updatedBy,jdbcType=BIGINT}
where id = #{id,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
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