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.
33 lines
572 B
33 lines
572 B
import type { PageParam } from '@/api';
|
|
|
|
/**
|
|
* 表单设计
|
|
*/
|
|
export interface Form {
|
|
formId?: number;
|
|
name?: string;
|
|
photo?: string;
|
|
background?: string;
|
|
video?: string;
|
|
submitNumber?: number;
|
|
layout?: string;
|
|
userId?: number;
|
|
sortNumber?: number;
|
|
comments?: string;
|
|
status?: number;
|
|
createTime?: string;
|
|
hidePhoto?: any;
|
|
hideBackground?: number;
|
|
hideVideo?: number;
|
|
opacity?: number;
|
|
data?: any[];
|
|
clearCache?: number;
|
|
}
|
|
|
|
/**
|
|
* 搜索条件
|
|
*/
|
|
export interface FormParam extends PageParam {
|
|
formId?: number;
|
|
name?: number;
|
|
}
|