Sign in

潘钊 / bsth_control · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth_control
  • ..
  • js
  • parameters.js
  • Merge branch 'pudong' of http://222.66.0.204:8090/panzhaov5/bsth_control ...
      bb164046
    into pudong
    廖磊 authored
    2018-08-16 15:24:37 +0800  
    Browse Code »
parameters.js 314 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/**
 *  时刻表参数类
 */
var parameters = function () {
    var dataMap;
    var getDataMap = function(){
        return dataMap;
    };
    var setDataMap = function(data){
        dataMap = data;
    };
    return {
        getDataMap : getDataMap,
        setDataMap : setDataMap
    }
}();