|
@@ -172,21 +172,21 @@ public class SysUserController extends ApiBaseController {
|
|
|
|
|
|
@PostMapping("/searchOrg")
|
|
|
@ApiOperation(value = "查询组织机构",
|
|
|
- notes = "参数:{parType:'xxxxxxxxxxxxxxxxxxxx'," +
|
|
|
- "parValue:'xxx'")
|
|
|
+ notes = "参数:{payType:'xxxxxxxxxxxxxxxxxxxx'," +
|
|
|
+ "payValue:'xxx'")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "params" , paramType = "body")
|
|
|
})
|
|
|
public Map searchProductParamByCustomerCode() {
|
|
|
ParameterObject obj = getParameterObject();
|
|
|
OrderSalesParameter salesManager =new OrderSalesParameter();
|
|
|
- String parType = obj.getString("payType");
|
|
|
- String parValue = obj.getString("payValue");
|
|
|
- if("".equals(parType) ||parType ==null){
|
|
|
+ String payType = obj.getString("payType");
|
|
|
+ String payValue = obj.getString("payValue");
|
|
|
+ if("".equals(payType) ||payType ==null){
|
|
|
salesManager.setParType("diy_level");
|
|
|
}else{
|
|
|
- salesManager.setParType(parType);
|
|
|
- salesManager.setParValue(parValue);
|
|
|
+ salesManager.setParType(payType);
|
|
|
+ salesManager.setParValue(payValue);
|
|
|
}
|
|
|
Map map = new HashMap();
|
|
|
List<Map<String,Object>> dataList = alertConfigurationService.searchProductParamByCustomerCode(
|