Code-Master/generateds/models/QuestionSubmitVO.ts
2024-09-01 21:31:38 +08:00

23 lines
557 B
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { JudgeInfo } from './JudgeInfo';
import type { QuestionVO } from './QuestionVO';
import type { UserVO } from './UserVO';
export type QuestionSubmitVO = {
code?: string;
createTime?: string;
id?: number;
judgeInfo?: JudgeInfo;
language?: string;
questionId?: number;
questionVO?: QuestionVO;
status?: number;
updateTime?: string;
userId?: number;
userVO?: UserVO;
};