export interface IArea { serialNo: number; ID: string; compilationID: string; name: string; } export interface IInfoLib { ID: string; name: string; period: string; // 期数 eg: 2020年-05月 compilationID: string; createDate: number; } export interface IInfoSearch { areaID: string; period: string; keyword: string; classTree: boolean; classID?: string; // 所属分类 code?: string; // 编码 commonAreaID?: string; // 通用地区ID } export interface IAreaClass { ID: string; parentID: string; seq: number; name: string; areaID: string; libID: string; } export interface IInfoPriceItem { ID: string; libID: string; classID: string; // 分类 code: string; name: string; specs: string; unit: string; taxPrice: string; // 含税价格 noTaxPrice: string; // 不含税价格 // 以下冗余数据为方便前台信息价功能处理 period: string; // 期数 eg: 2020-05 areaID: string; // 地区 compilationID: string; // 费用定额 remark: string; matchString?: string; // 临时变量关键词匹配时用到 }