11 lines
153 B
TypeScript
11 lines
153 B
TypeScript
/**
|
|
* 公司简介视图模型
|
|
*/
|
|
export interface CompanyProfileView {
|
|
/** 唯一标识符 **/
|
|
id: number;
|
|
|
|
/** 内容 **/
|
|
content: string;
|
|
}
|