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;
|
|
}
|