remove 删除无用参数

This commit is contained in:
gssong
2024-06-03 21:23:32 +08:00
parent 38df345078
commit c8626b6893
2 changed files with 2 additions and 7 deletions

View File

@ -6,7 +6,6 @@ export interface LeaveVO {
leaveDays: number;
remark: string;
status?: string;
processInstanceId?: string;
}
export interface LeaveForm extends BaseEntity {
@ -17,7 +16,6 @@ export interface LeaveForm extends BaseEntity {
leaveDays?: number;
remark?: string;
status?: string;
processInstanceId?: string;
}
export interface LeaveQuery extends PageQuery {