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.
28 lines
482 B
28 lines
482 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 表单数据
|
|
*/
|
|
export interface FormRecord {
|
|
formRecordId?: number;
|
|
formId?: number;
|
|
name?: string;
|
|
formData?: string;
|
|
formObj?: Object;
|
|
userId?: number;
|
|
sortNumber?: number;
|
|
comments?: string;
|
|
status?: number;
|
|
createTime?: string;
|
|
layout?: string;
|
|
}
|
|
|
|
/**
|
|
* 搜索条件
|
|
*/
|
|
export interface FormRecordParam extends PageParam {
|
|
formRecordId?: string;
|
|
formId?: number;
|
|
phone?: string;
|
|
name?: number;
|
|
}
|