| | |
| | | |
| | | |
| | | public void sendMeg(String[] split, String phone, String applyType, Integer fundType, Long fundId) throws ApiException { |
| | | String content = null; |
| | | String time = null; |
| | | String people = null; |
| | | |
| | | if (split.length >= 1) { |
| | | people = split[0]; |
| | | } |
| | | if (split.length >= 2) { |
| | | time = split[1]; |
| | | } |
| | | if (split.length >= 3) { |
| | | content = split[2]; |
| | | } |
| | | |
| | | //记录操作记录 |
| | | ServiceFundflow serviceFundflow = new ServiceFundflow(); |
| | | serviceFundflow.setCreateBy(split[0]); |
| | | |
| | | serviceFundflow.setCreateBy(people); |
| | | serviceFundflow.setUpdateBy(people); |
| | | serviceFundflow.setCheckusername(people); |
| | | serviceFundflow.setCreateTime(new Date()); |
| | | serviceFundflow.setUpdateBy(split[0]); |
| | | serviceFundflow.setUpdateTime(new Date()); |
| | | serviceFundflow.setCheckusername(split[0]); |
| | | serviceFundflow.setFlowcontent(split[2]); |
| | | serviceFundflow.setFlowcontent(content); |
| | | serviceFundflow.setFlowconclusion(2); |
| | | serviceFundflow.setFundtype(fundType); |
| | | serviceFundflow.setFlowlevel(100); |
| | |
| | | |
| | | ArrayList<ConcurrentHashMap<String, Object>> contentList = new ArrayList<>(); |
| | | ConcurrentHashMap map = new ConcurrentHashMap(); |
| | | map.put("审批人:", split[0]); |
| | | map.put("审批时间:", split[1]); |
| | | map.put("意见:", split[2]); |
| | | map.put("审批人:", people); |
| | | map.put("审批时间:", time); |
| | | map.put("意见:", content); |
| | | contentList.add(map); |
| | | DingTalkReqVo dingTalkReqVo = new DingTalkReqVo(); |
| | | dingTalkReqVo.setTitle("财务系统驳回信息"); |