common.ts 801 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export interface IActionType {
  2. keyword: string,
  3. latest?: boolean,
  4. notlatest?: boolean
  5. }
  6. export interface ILoading {
  7. search: boolean
  8. add: boolean
  9. update: boolean
  10. delete: boolean
  11. import: boolean
  12. export: boolean
  13. }
  14. export interface IIndex {
  15. id?: number,
  16. dataGroup: string,
  17. stsDate: string,
  18. projectCode: string,
  19. projectName: string,
  20. mangeField: string,
  21. indexType: string,
  22. indexCode: string,
  23. indexName: string,
  24. indexValue: string,
  25. unit: string,
  26. floatTips: string,
  27. note: string
  28. }
  29. export interface IProject {
  30. id?: number,
  31. code: string,
  32. name: string,
  33. planBeginDate: string,
  34. planEndDate: string,
  35. levelname: string,
  36. longitude: string,
  37. latitude: string,
  38. range: string,
  39. area: string
  40. }