forked from gxwebsoft/yufengxing-pc
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.
23 lines
404 B
23 lines
404 B
import type { PageParam } from '@/api';
|
|
|
|
export interface Group {
|
|
groupId?: number;
|
|
name?: string;
|
|
status?: number;
|
|
comments?: any;
|
|
sortNumber?: number;
|
|
deleted?: number;
|
|
tenantId?: number;
|
|
createTime?: string;
|
|
updateTime?: string;
|
|
}
|
|
|
|
/**
|
|
* 搜索条件
|
|
*/
|
|
export interface GroupParam extends PageParam {
|
|
groupId?: number;
|
|
name?: string;
|
|
status?: number;
|
|
keywords?: string;
|
|
}
|