admin-vben5/apps/web-antd/src/api/system/post/model.d.ts
2024-09-13 15:27:29 +08:00

13 lines
202 B
TypeScript

/**
* @description: Post interface
*/
export interface Post {
postId: number;
postCode: string;
postName: string;
postSort: number;
status: string;
remark: string;
createTime: string;
}