Merge branch 'wq' of SH-Arbitrate/Arbitrate-Backend into dev
This commit was merged in pull request #47.
This commit is contained in:
+1
@@ -19,6 +19,7 @@ import org.springframework.web.bind.annotation.*;
|
|||||||
import com.ruoyi.common.utils.poi.ExcelUtil;
|
import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||||
import org.springframework.web.multipart.MultipartFile;
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
|
import javax.annotation.security.PermitAll;
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|||||||
+2
-1
@@ -3,6 +3,7 @@ package com.ruoyi.wisdomarbitrate.domain.vo;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
import javax.validation.constraints.NotEmpty;
|
import javax.validation.constraints.NotEmpty;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -13,7 +14,7 @@ import java.io.Serializable;
|
|||||||
@Data
|
@Data
|
||||||
public class SendRoomNoMessageVO implements Serializable {
|
public class SendRoomNoMessageVO implements Serializable {
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@NotEmpty(message = "案件id不能为空")
|
@NotNull(message = "案件id不能为空")
|
||||||
private Long id;
|
private Long id;
|
||||||
@NotEmpty(message = "房间号不能为空")
|
@NotEmpty(message = "房间号不能为空")
|
||||||
private String roomNo;
|
private String roomNo;
|
||||||
|
|||||||
@@ -8,12 +8,4 @@ import java.util.List;
|
|||||||
public interface ArbitratorMapper {
|
public interface ArbitratorMapper {
|
||||||
List<Arbitrator> selectArbitratorList(Arbitrator arbitrator);
|
List<Arbitrator> selectArbitratorList(Arbitrator arbitrator);
|
||||||
|
|
||||||
/**
|
|
||||||
* 根据案件id和身份类型查询案件关联人
|
|
||||||
* @param caseAppliId
|
|
||||||
* @param identityType
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
Arbitrator selectArbitratorById(@Param("caseAppliId") Long caseAppliId,@Param("identityType") Integer identityType);
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package com.ruoyi.wisdomarbitrate.mapper;
|
|||||||
|
|
||||||
import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
|
import com.ruoyi.wisdomarbitrate.domain.CaseAffiliate;
|
||||||
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
import com.ruoyi.wisdomarbitrate.domain.CaseApplication;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@@ -15,6 +16,7 @@ public interface CaseAffiliateMapper {
|
|||||||
|
|
||||||
|
|
||||||
List<CaseAffiliate> selectCaseAffiliate(CaseAffiliate caseAffiliate);
|
List<CaseAffiliate> selectCaseAffiliate(CaseAffiliate caseAffiliate);
|
||||||
|
CaseAffiliate selectCaseAffiliateByIdentityType(@Param("caseAppliId") Long caseAppliId, @Param("identityType")int identityType);
|
||||||
|
|
||||||
int updataCaseAffiliate(CaseAffiliate caseAffiliate);
|
int updataCaseAffiliate(CaseAffiliate caseAffiliate);
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-5
@@ -461,8 +461,8 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String sendRoomNoMessage(SendRoomNoMessageVO messageVO) {
|
public String sendRoomNoMessage(SendRoomNoMessageVO messageVO) {
|
||||||
Arbitrator arbitrator = arbitratorMapper.selectArbitratorById(messageVO.getId(), 2);
|
CaseAffiliate caseAffiliate = caseAffiliateMapper.selectCaseAffiliateByIdentityType(messageVO.getId(), 2);
|
||||||
if(null==arbitrator){
|
if(null==caseAffiliate){
|
||||||
return "被申请人不存在";
|
return "被申请人不存在";
|
||||||
}
|
}
|
||||||
CaseApplication caseApplication = new CaseApplication();
|
CaseApplication caseApplication = new CaseApplication();
|
||||||
@@ -473,9 +473,9 @@ public class CaseApplicationServiceImpl implements ICaseApplicationService {
|
|||||||
SmsUtils.SendSmsRequest request = new SmsUtils.SendSmsRequest();
|
SmsUtils.SendSmsRequest request = new SmsUtils.SendSmsRequest();
|
||||||
request.setTemplateId("1948332");
|
request.setTemplateId("1948332");
|
||||||
// 1948332 普通短信 开庭审理房间号通知 尊敬的{1}用户,您的{2}仲裁案件,开庭审理房间号为{3},请知晓,如非本人操作,请忽略本短信。
|
// 1948332 普通短信 开庭审理房间号通知 尊敬的{1}用户,您的{2}仲裁案件,开庭审理房间号为{3},请知晓,如非本人操作,请忽略本短信。
|
||||||
request.setPhone(arbitrator.getTelephone());
|
request.setPhone(caseAffiliate.getContactTelphone());
|
||||||
request.setTemplateParamSet(new String[]{arbitrator.getArbitratorName(), caseApplicationselect.getCaseNum(), messageVO.getRoomNo()});
|
request.setTemplateParamSet(new String[]{caseAffiliate.getName(), caseApplicationselect.getCaseNum(), messageVO.getRoomNo()});
|
||||||
|
SmsUtils.sendSms(request);
|
||||||
|
|
||||||
return "短信发送成功";
|
return "短信发送成功";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,21 +36,5 @@
|
|||||||
|
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
<select id="selectArbitratorById" resultMap="ArbitratorResult">
|
|
||||||
select a.id ,a.arbitrator_name ,a.title ,a.career ,a.professi_classifi ,
|
|
||||||
a.education ,a.area ,a.telephone ,a.current_case_num ,a.closed_case_num
|
|
||||||
from arbitrator a
|
|
||||||
<where>
|
|
||||||
<if test="caseAppliId != null and caseAppliId != ''">
|
|
||||||
AND ca.ase_appliId=#{caseAppliId}
|
|
||||||
</if>
|
|
||||||
|
|
||||||
<if test="identityType != null and identityType != ''">
|
|
||||||
a.identity_type=#{identityType}
|
|
||||||
</if>
|
|
||||||
|
|
||||||
</where>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
||||||
@@ -33,6 +33,20 @@
|
|||||||
</if>
|
</if>
|
||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
<select id="selectCaseAffiliateByIdentityType" resultMap="CaseAffiliateResult">
|
||||||
|
select c.id ,c.case_appli_id ,c.identity_type ,c.name ,c.identity_num ,c.contact_telphone ,c.contact_address ,
|
||||||
|
c.work_address ,c.work_telphone ,c.name_agent, c.identity_num_agent ,c.contact_telphone_agent ,c.contact_address_agent,
|
||||||
|
c.track_num
|
||||||
|
from case_affiliate c
|
||||||
|
<where>
|
||||||
|
<if test="caseAppliId != null ">
|
||||||
|
AND c.case_appli_id = #{caseAppliId}
|
||||||
|
</if>
|
||||||
|
<if test="caseAppliId != null ">
|
||||||
|
AND c.identity_type = #{identityType}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</select>
|
||||||
|
|
||||||
|
|
||||||
<insert id="batchCaseAffiliate">
|
<insert id="batchCaseAffiliate">
|
||||||
|
|||||||
Reference in New Issue
Block a user