Commit 37c92562 authored by hongguangwu's avatar hongguangwu

Merge remote-tracking branch 'origin/MVP1.7.7' into MVP1.7.7

parents 1eabef89 c7d4d71d
......@@ -66,6 +66,12 @@ public class TSettleDomain extends BaseEntity {
@Schema(description = "项目名称")
private String departName;
/**
* 登录账号
*/
@Schema(description = "登录账号")
private String loginName;
/**
* 是否是新业务(0是/1否)
*/
......@@ -561,4 +567,10 @@ public class TSettleDomain extends BaseEntity {
@Schema(description ="手机号码")
private String csPhone;
/**
* 前端客服-登录账号
*/
@Schema(description ="登录账号")
private String csLoginName;
}
......@@ -30,4 +30,10 @@ public class TDomainUpCsVo implements Serializable {
*/
@Schema(description = "项目编码")
private String departNo;
/**
* 登录账号
*/
@Schema(description = "登录账号")
private String loginName;
}
......@@ -531,6 +531,7 @@ public class TSettleDomainServiceImpl extends ServiceImpl<TSettleDomainMapper, T
if (Common.isNotNull(tSettleDomainInfo)){
domain.setCsName(vo.getName());
domain.setCsPhone(vo.getPhone());
domain.setCsLoginName(vo.getLoginName());
domain.setId(tSettleDomainInfo.getId());
baseMapper.updateById(domain);
}
......
......@@ -104,6 +104,7 @@
<result property="csName" column="cs_name"/>
<result property="csPhone" column="cs_phone"/>
<result property="csLoginName" column="cs_login_name"/>
</resultMap>
<resultMap id="tSettleDomainTwoMap" type="com.yifu.cloud.plus.v1.yifu.archives.vo.SecondBelongVo">
......
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