track-entity.js 1.4 KB

1234567891011121314151617181920212223
  1. import {objToCamel, isValue, YMDHms} from "../../util/index.js";
  2. export default class ParamsEntity {
  3. constructor(obj) {
  4. objToCamel(obj)
  5. this.sourceId = isValue(obj?.sourceId) ? obj.sourceId : null
  6. this.id = isValue(obj?.id) ? obj.id : null
  7. this.createTime = isValue(obj?.createTime) ? YMDHms(obj.createTime) : null
  8. this.updateTime = isValue(obj?.updateTime) ? YMDHms(obj.updateTime) : null
  9. this.trackKey = isValue(obj?.trackKey) ? obj.trackKey : null
  10. this.trackPointKey = isValue(obj?.trackPointKey) ? obj.trackPointKey : null
  11. this.trackWktKey = isValue(obj?.trackWktKey) ? obj.trackWktKey : null
  12. this.trackSpeedKey = isValue(obj?.trackSpeedKey) ? obj.trackSpeedKey : null
  13. this.trackCourseKey = isValue(obj?.trackCourseKey) ? obj.trackCourseKey : null
  14. this.trackHeadKey = isValue(obj?.trackHeadKey) ? obj.trackHeadKey : null
  15. this.historyTrackKey = isValue(obj?.historyTrackKey) ? obj.historyTrackKey : null
  16. this.historyTrackPointKey = isValue(obj?.historyTrackPointKey) ? obj.historyTrackPointKey : null
  17. this.historyTrackWktKey = isValue(obj?.historyTrackWktKey) ? obj.historyTrackWktKey : null
  18. this.historyTrackSpeedKey = isValue(obj?.historyTrackSpeedKey) ? obj.historyTrackSpeedKey : null
  19. this.historyTrackCourseKey = isValue(obj?.historyTrackCourseKey) ? obj.historyTrackCourseKey : null
  20. this.historyTrackHeadKey = isValue(obj?.historyTrackHeadKey) ? obj.historyTrackHeadKey : null
  21. }
  22. }