Commit 8be2bfe6 authored by fangxinjiang's avatar fangxinjiang

客户服务平台-fxj

parent 27c16f1d
......@@ -548,4 +548,17 @@ public class TSettleDomain extends BaseEntity {
*/
@Schema(description ="代发户状态(0否;1是代发户)")
private Integer issueStatus;
/**
* 前端客服
*/
@Schema(description ="前端客服")
private String csName;
/**
* 前端客服-手机号码
*/
@Schema(description ="手机号码")
private String csPhone;
}
......@@ -124,4 +124,17 @@ public class TSettleDomainVo extends TSettleDomain implements Serializable {
@TableField(exist = false)
private List<String> settleDomainIds;
/**
* 前端客服
*/
@Schema(description ="前端客服")
private String csName;
/**
* 前端客服-手机号码
*/
@Schema(description ="手机号码")
private String csPhone;
}
......@@ -101,6 +101,9 @@
<result property="division" column="DIVISION"/>
<result property="issueStatus" column="ISSUE_STATUS"/>
<result property="csName" column="cs_name"/>
<result property="csPhone" column="cs_phone"/>
</resultMap>
<resultMap id="tSettleDomainTwoMap" type="com.yifu.cloud.plus.v1.yifu.archives.vo.SecondBelongVo">
......@@ -187,7 +190,9 @@
a.LINE_TYPE,
a.HAS_CONTAIN_RISKS,
a.NEW_LINE,
a.DIVISION
a.DIVISION,
a.cs_name,
a.cs_phone
</sql>
<resultMap id="tSettleDomainSelectVoMap" type="com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainSelectVo">
......@@ -223,6 +228,9 @@
<result property="hasContainRisks" column="HAS_CONTAIN_RISKS"/>
<result property="newLine" column="NEW_LINE"/>
<result property="division" column="DIVISION"/>
<result property="csName" column="cs_name"/>
<result property="csPhone" column="cs_phone"/>
</resultMap>
<select id="getPage" resultMap="tSettleDomainMap">
......@@ -420,7 +428,9 @@
a.LINE_TYPE,
if(a.HAS_CONTAIN_RISKS = '是','0',if(a.HAS_CONTAIN_RISKS = '否','1','')) HAS_CONTAIN_RISKS,
a.NEW_LINE,
a.DIVISION
a.DIVISION,
a.cs_name,
a.cs_phone
FROM
t_settle_domain a
<if test="userId != null and userId.trim() != '-999'">
......
......@@ -413,7 +413,7 @@
</select>
<select id="cspUserPage" resultType="com.yifu.cloud.plus.v1.yifu.admin.api.entity.SysUser">
select u.user_id,u.nickname,u.phone,u.create_time,u.username,p.dept_id,d.`name` as dept_name,p.user_type from sys_user u
select u.user_id,u.nickname,u.phone,u.create_time,u.username,p.dept_id,d.`name` as dept_name,p.user_type,u.type from sys_user u
LEFT JOIN sys_user_dept_permission p on u.user_id=p.user_id
LEFT JOIN sys_dept d on d.dept_id=p.dept_id
where
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment