mirror of
https://github.com/shuguangnet/Code-Master.git
synced 2025-01-23 16:08:45 +08:00
22 lines
557 B
TypeScript
22 lines
557 B
TypeScript
/* generated using openapi-typescript-codegen -- do not 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;
|
|
};
|
|
|