mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-04-29 04:51:26 +08:00
13 lines
202 B
TypeScript
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;
|
|
}
|