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.

45 lines
845 B

4 months ago
4 months ago
4 months ago
4 months ago
  1. export type Measurement = {
  2. id: number;
  3. name: string;
  4. trackShapeCode: string;
  5. operatorName: string;
  6. bureau: string;
  7. lineName: string;
  8. location: string;
  9. direction: string;
  10. createTime: string; // Date;
  11. leftPoints: string; // json: 坐标数组
  12. rightPoints: string; // json: 坐标数组
  13. upload: boolean;
  14. syncStatus: 'wait' | 'finish' | 'fail';
  15. };
  16. export type KTJOrg = {
  17. key: string;
  18. value: string;
  19. gwdDicList: Array<{
  20. key: string;
  21. value: string;
  22. railDicList: Array<{
  23. key: string;
  24. value: string;
  25. }>;
  26. }>;
  27. };
  28. export type RailType = {
  29. id: number;
  30. name: string;
  31. code: string;
  32. calPoints?: string;
  33. points?: string;
  34. };
  35. export type SaveMeasureDTO = {
  36. operatorName: string;
  37. trackShapeCode: string;
  38. name: string;
  39. lineName: string;
  40. location: string;
  41. direction: string;
  42. };