Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
傅伟强-富德
/
test
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 06121f99
authored
Jan 04, 2019
by
傅伟强-富德
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new file
1 parent
dd5df3cc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
0 deletions
编辑银行网点代码
编辑银行网点代码
0 → 100644
View file @
06121f9
/**
/**
* 编辑银行网点收展服务人员
* @param bankCode
* @param empNo
* @return
*/
@RequestMapping("modifyBankEmp")
@ResponseBody
public ServerResponse<Map<String, String>> modiyfBankEmp (String bankCode,String empNo){
if(StringUtils.isEmpty(bankCode)){
return ServerResponse.createByErrorMessage("银行网点代码不能为空");
}
if(StringUtils.isEmpty(empNo)){
return ServerResponse.createByErrorMessage("收展服务人员代码不能为空");
}
JSONObject retjson=new JSONObject();
Map<String,String> paramMap=new HashMap<String,String>();
Map<String,String> retMap=new HashMap<String,String>();
retMap.put("isFlag", MyConstant.ISPASS_NO);
retMap.put("msg", "系统繁忙");
paramMap.put(bankCode,empNo);
try
{
retjson=ruleDealService.addBankEmp(paramMap);
if(retjson!=null){
retMap.put("msg", retjson.getString("msg"));
if(Integer.parseInt(retjson.getString("success"))>0){
retMap.put("isFlag", MyConstant.ISPASS_YES);
}
}
}
catch (Exception e)
{
e.printStackTrace();
}
return ServerResponse.createBySuccess(retMap);
}
\ No newline at end of file
Write
Preview
Markdown
is supported
Attach a file
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 post a comment