import { IFormModel } from './i-form-model'; /** * 搜索表单模型接口 * * @export * @interface ISearchFormModel * @extends {ICtrlModel} */ export interface ISearchFormModel extends IFormModel { /** * 搜索按钮样式 * * @type {string} * @memberof ISearchFormModel */ searchButtonStyle: string; /** * 搜索按钮位置 * * @type {string} * @memberof ISearchFormModel */ searchButtonPos: string; /** * 自动搜索 * * @type {boolean} * @memberof ISearchFormModel */ enableAutoSearch: boolean; }