You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
749 B
43 lines
749 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 应用评论
|
|
*/
|
|
export interface CompanyComment {
|
|
// ID
|
|
id?: number;
|
|
// 父级ID
|
|
parentId?: number;
|
|
// 用户ID
|
|
userId?: number;
|
|
// 企业ID
|
|
companyId?: number;
|
|
// 评分
|
|
rate?: number;
|
|
// 排序(数字越小越靠前)
|
|
sortNumber?: number;
|
|
// 评论内容
|
|
comments?: string;
|
|
// 状态
|
|
status?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
// 租户名称
|
|
tenantName?: string;
|
|
// 企业
|
|
logo?: string;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 子列表
|
|
children?: CompanyComment[];
|
|
}
|
|
|
|
/**
|
|
* 应用评论搜索条件
|
|
*/
|
|
export interface CompanyCommentParam extends PageParam {
|
|
id?: number;
|
|
userId?: number;
|
|
tenantId?: number;
|
|
keywords?: string;
|
|
}
|