track-entity.js 1.6 KB

12345678910111213141516171819202122232425
  1. const {objToCamel, isValue, YMDHms} = require("../../util/index")
  2. module.exports = 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 : ''
  10. this.trackPointKey = isValue(obj?.trackPointKey) ? obj.trackPointKey : ''
  11. this.trackWktKey = isValue(obj?.trackWktKey) ? obj.trackWktKey : ''
  12. this.trackSpeedKey = isValue(obj?.trackSpeedKey) ? obj.trackSpeedKey : ''
  13. this.trackCourseKey = isValue(obj?.trackCourseKey) ? obj.trackCourseKey : ''
  14. this.trackHeadKey = isValue(obj?.trackHeadKey) ? obj.trackHeadKey : ''
  15. this.trackTimeKey = isValue(obj?.trackTimeKey) ? obj.trackTimeKey : ''
  16. this.historyTrackKey = isValue(obj?.historyTrackKey) ? obj.historyTrackKey : ''
  17. this.historyTrackPointKey = isValue(obj?.historyTrackPointKey) ? obj.historyTrackPointKey : ''
  18. this.historyTrackWktKey = isValue(obj?.historyTrackWktKey) ? obj.historyTrackWktKey : ''
  19. this.historyTrackSpeedKey = isValue(obj?.historyTrackSpeedKey) ? obj.historyTrackSpeedKey : ''
  20. this.historyTrackCourseKey = isValue(obj?.historyTrackCourseKey) ? obj.historyTrackCourseKey : ''
  21. this.historyTrackHeadKey = isValue(obj?.historyTrackHeadKey) ? obj.historyTrackHeadKey : ''
  22. this.historyTrackTimeKey = isValue(obj?.historyTrackTimeKey) ? obj.historyTrackTimeKey : ''
  23. }
  24. }