Files
chart-view/src/api/path/project.d.ts

39 lines
536 B
TypeScript
Raw Normal View History

2025-12-20 17:39:32 +08:00
export type ProjectItem = {
/**
2025-12-27 14:10:16 +08:00
* identity
2025-12-20 17:39:32 +08:00
*/
2025-12-27 14:10:16 +08:00
identity: string
2025-12-20 17:39:32 +08:00
/**
*
*/
projectName: string
/**
* :\
* -1: 未发布\
* 1: 已发布
*/
state: number
/**
*
*/
createTime: string
/**
* url
*/
indexImage: string
/**
2025-12-27 14:10:16 +08:00
* identity
2025-12-20 17:39:32 +08:00
*/
createUserId: string
/**
*
*/
remarks: string
}
export interface ProjectDetail extends ProjectItem {
/**
*
*/
content: string
}