fix: accept null
This commit is contained in:
parent
42ff57e23e
commit
9fbc8ace15
1 changed files with 8 additions and 8 deletions
|
|
@ -303,14 +303,14 @@ export class RequestListController extends Controller {
|
|||
payload: {
|
||||
workStatus?: RequestWorkStatus;
|
||||
attributes?: Record<string, any>;
|
||||
customerDuty?: boolean;
|
||||
customerDutyCost?: number;
|
||||
companyDuty?: boolean;
|
||||
companyDutyCost?: number;
|
||||
individualDuty?: boolean;
|
||||
individualDutyCost?: number;
|
||||
responsibleUserLocal?: boolean;
|
||||
responsibleUserId?: string;
|
||||
customerDuty?: boolean | null;
|
||||
customerDutyCost?: number | null;
|
||||
companyDuty?: boolean | null;
|
||||
companyDutyCost?: number | null;
|
||||
individualDuty?: boolean | null;
|
||||
individualDutyCost?: number | null;
|
||||
responsibleUserLocal?: boolean | null;
|
||||
responsibleUserId?: string | null;
|
||||
},
|
||||
@Query() successAll?: boolean,
|
||||
) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue