39 lines
518 B
TypeScript
Raw Normal View History

2022-11-27 12:16:32 +08:00
export type ProjectItem = {
/**
* id
*/
id: string
/**
*
*/
projectName: string
/**
* :\
* -1: 未发布\
* 1: 已发布
*/
state: number
/**
*
*/
createTime: string
/**
* url
*/
indexImage: string
/**
* id
*/
createUserId: string
/**
*
*/
remarks: string
}
export interface ProejctDetail extends ProjectItem {
/**
*
*/
content: string
}