1、增加单一来源简化版初始化评审室方法
This commit is contained in:
@ -51,8 +51,8 @@ public interface EbtpMallProcessApi {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取评审流程信息
|
* 获取评审流程信息
|
||||||
* @param dictProjectConfig
|
* @param dictProjectConfig 流程实例
|
||||||
* @return
|
* @return 返回结果
|
||||||
*/
|
*/
|
||||||
@PostMapping("/v1/projectconfig/query")
|
@PostMapping("/v1/projectconfig/query")
|
||||||
BaseResponse<List<WfProjectConfigTask>> getManagerList(@RequestBody DictProjectConfig dictProjectConfig);
|
BaseResponse<List<WfProjectConfigTask>> getManagerList(@RequestBody DictProjectConfig dictProjectConfig);
|
||||||
@ -87,9 +87,9 @@ public interface EbtpMallProcessApi {
|
|||||||
* 单一来源简化版评审室信息初始化
|
* 单一来源简化版评审室信息初始化
|
||||||
* @param tpId 项目Id
|
* @param tpId 项目Id
|
||||||
* @param sectionId 标包信息
|
* @param sectionId 标包信息
|
||||||
* @return
|
* @return 返回结果
|
||||||
*/
|
*/
|
||||||
@PostMapping("/v1/bizassessroom/simple/initialize")
|
@PostMapping("/v1/bizassessroom/simple/initialize")
|
||||||
public BaseResponse<Boolean> simpleInitialize(@ApiParam(value = "项目Id", required = true) @RequestParam(name = "tpId") String tpId,
|
BaseResponse<Boolean> simpleInitialize(@ApiParam(value = "项目Id", required = true) @RequestParam(name = "tpId") String tpId,
|
||||||
@ApiParam(value = "标包Id", required = true) @RequestParam(name = "sectionIds") List<String> sectionId);
|
@ApiParam(value = "标包Id", required = true) @RequestParam(name = "sectionIds") List<String> sectionId);
|
||||||
}
|
}
|
||||||
|
@ -62,6 +62,11 @@ public class EbtpMallProcessClientFallback implements FallbackFactory<EbtpMallPr
|
|||||||
public BaseResponse<Boolean> inquiryInitialize(String tpId, Map<String, String> sectionMap, String openTime) {
|
public BaseResponse<Boolean> inquiryInitialize(String tpId, Map<String, String> sectionMap, String openTime) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BaseResponse<Boolean> simpleInitialize(String tpId, List<String> sectionId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user