| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- export interface IActionType {
- keyword: string,
- latest?: boolean,
- notlatest?: boolean
- }
- export interface ILoading {
- search: boolean
- add: boolean
- update: boolean
- delete: boolean
- import: boolean
- export: boolean
- }
- export interface IIndex {
- id?: number,
- dataGroup: string,
- stsDate: string,
- projectCode: string,
- projectName: string,
- mangeField: string,
- indexType: string,
- indexCode: string,
- indexName: string,
- indexValue: string,
- unit: string,
- floatTips: string,
- note: string
- }
- export interface IProject {
- id?: number,
- code: string,
- name: string,
- planBeginDate: string,
- planEndDate: string,
- levelname: string,
- longitude: string,
- latitude: string,
- range: string,
- area: string
- }
|