feat: post form

This commit is contained in:
dap
2024-09-13 15:27:29 +08:00
parent d27a131877
commit c56dc7c366
13 changed files with 1002 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
/**
* @description: Post interface
*/
export interface Post {
postId: number;
postCode: string;
postName: string;
postSort: number;
status: string;
remark: string;
createTime: string;
}