fix(产品需求、项目需求): 按照会议所说进行修改。
This commit is contained in:
18
src/typings/api/project.d.ts
vendored
18
src/typings/api/project.d.ts
vendored
@@ -700,8 +700,8 @@ declare namespace Api {
|
||||
currentHandlerUserId?: string | null;
|
||||
/** 当前处理人昵称 */
|
||||
currentHandlerUserNickname?: string | null;
|
||||
/** 所需工时 */
|
||||
workHours: number;
|
||||
/** 预期完成日期 */
|
||||
expectedTime?: string | null;
|
||||
/** 排序值 */
|
||||
sort: number;
|
||||
/** 创建时间 */
|
||||
@@ -763,6 +763,16 @@ declare namespace Api {
|
||||
availableActions: ProjectRequirementLifecycleAction[];
|
||||
}
|
||||
|
||||
interface ProjectRequirementBatchReqVO {
|
||||
projectId: string;
|
||||
requirementIds: string[];
|
||||
}
|
||||
|
||||
interface ProjectRequirementAllowedTransitionBatchRespVO {
|
||||
requirementId: string;
|
||||
transitions: ProjectRequirementLifecycleAction[];
|
||||
}
|
||||
|
||||
/** 项目需求分页查询参数 */
|
||||
type ProjectRequirementSearchParams = CommonType.RecordNullable<
|
||||
Pick<PageParams, 'pageNo' | 'pageSize'> &
|
||||
@@ -790,7 +800,7 @@ declare namespace Api {
|
||||
| 'proposerNickname'
|
||||
| 'currentHandlerUserId'
|
||||
| 'currentHandlerUserNickname'
|
||||
| 'workHours'
|
||||
| 'expectedTime'
|
||||
| 'sort'
|
||||
>;
|
||||
|
||||
@@ -828,7 +838,7 @@ declare namespace Api {
|
||||
| 'proposerNickname'
|
||||
| 'currentHandlerUserId'
|
||||
| 'currentHandlerUserNickname'
|
||||
| 'workHours'
|
||||
| 'expectedTime'
|
||||
| 'sort'
|
||||
>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user