fix(外部标准):获取高级查询条件
This commit is contained in:
+3
-2
@@ -18,6 +18,7 @@ import com.jero.modules.tag.enums.TableNameEnum;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
@@ -115,8 +116,8 @@ public class LawsDomesticController {
|
||||
@ApiOperation(value="国内法规标准-获取高级查询条件", notes="国内法规标准-获取高级查询条件")
|
||||
@GetMapping(value = "getAdvancedQueryCondition")
|
||||
@ApiOperationSupport(order = 5)
|
||||
public Result<List<LawsTag>> getAdvancedQueryCondition() {
|
||||
return Result.OK(lawsCommonService.getAdvancedQueryCondition(MODULE_VALUE));
|
||||
public Result<List<LawsTag>> getAdvancedQueryCondition(String moduleValue) {
|
||||
return Result.OK(lawsCommonService.getAdvancedQueryCondition(StringUtils.isNotBlank(moduleValue)?moduleValue:MODULE_VALUE));
|
||||
}
|
||||
|
||||
@AutoLog(value = "国内法规标准-获取表单模型")
|
||||
|
||||
Reference in New Issue
Block a user