| | |
| | | package com.product.mobile.core.controller; |
| | | |
| | | import com.product.common.lang.StringUtils; |
| | | import com.product.core.config.CoreConst; |
| | | import com.product.core.controller.support.AbstractBaseController; |
| | | import com.product.core.entity.FieldSetEntity; |
| | |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | |
| | | /** |
| | | * 通迅录 |
| | | * |
| | | * @Date 2022/3/3 19:54 |
| | | * @Desc |
| | | */ |
| | |
| | | RequestParameterEntity reqp = (RequestParameterEntity) bean; |
| | | fse = reqp.getFormData(); |
| | | } |
| | | if (StringUtils.isEmpty(fse.getString("orgCode"))) {//延迟加载时,指定部门 |
| | | return this.OK_List(contanctOrgListService.orgList(fse)); |
| | | } else { |
| | | return this.OK_List(contanctOrgListService.orgList(fse.getString("orgCode"))); |
| | | } |
| | | |
| | | } |
| | | |
| | | } |