mirror of
https://github.com/shuguangnet/Code-Master.git
synced 2025-01-23 16:08:45 +08:00
21 lines
474 B
TypeScript
21 lines
474 B
TypeScript
/* generated using openapi-typescript-codegen -- do not edit */
|
|
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
import type { UserVO } from './UserVO';
|
|
export type PostVO = {
|
|
content?: string;
|
|
createTime?: string;
|
|
favourNum?: number;
|
|
hasFavour?: boolean;
|
|
hasThumb?: boolean;
|
|
id?: number;
|
|
tagList?: Array<string>;
|
|
thumbNum?: number;
|
|
title?: string;
|
|
updateTime?: string;
|
|
user?: UserVO;
|
|
userId?: number;
|
|
};
|
|
|