18 lines
227 B
TypeScript
18 lines
227 B
TypeScript
/**
|
|
* 消息
|
|
*/
|
|
export interface Chat {
|
|
noticeId?: number;
|
|
content?: any;
|
|
tenantId?: number;
|
|
}
|
|
|
|
/**
|
|
* 任务搜索条件
|
|
*/
|
|
export interface ChatParam {
|
|
tenantId?: number;
|
|
content?: string;
|
|
noticeId?: number;
|
|
}
|