feat(产品需求、项目需求): 支持手动录入"来源业务编号",前端的sourceBizId改为sourceBizCode,也支持按"来源业务编号"搜索。

This commit is contained in:
dk
2026-06-15 11:30:07 +08:00
parent 3c1cf6c7fa
commit 622d8d5a4d
12 changed files with 155 additions and 105 deletions

View File

@@ -1160,8 +1160,8 @@ declare namespace Api {
categoryName?: string | null;
/** 需求来源类型 */
sourceType: ProjectRequirementSourceType;
/** 来源业务 ID */
sourceBizId?: string | null;
/** 来源业务编号 */
sourceBizCode?: string | null;
/** 优先级 */
priority: ProjectRequirementPriority;
/** 优先级名称 */
@@ -1285,7 +1285,7 @@ declare namespace Api {
Pick<PageParams, 'pageNo' | 'pageSize'> &
Pick<
ProjectRequirement,
'moduleId' | 'parentId' | 'category' | 'priority' | 'statusCode' | 'currentHandlerUserId' | 'sourceType'
'moduleId' | 'parentId' | 'category' | 'priority' | 'statusCode' | 'currentHandlerUserId' | 'sourceBizCode'
> & {
projectId: string;
title: string;
@@ -1303,6 +1303,7 @@ declare namespace Api {
| 'attachments'
| 'category'
| 'priority'
| 'sourceBizCode'
| 'proposerId'
| 'proposerNickname'
| 'currentHandlerUserId'