/**
* @constructor
*/
function XUISafetyTime() {
}

XUISafetyTime.prototype = {

    //组件
    /**
    "Gauge1":{
          "title":"仪表盘1",
          "name":"Gauge1",
          "type":"PUIGaugeInterface",
          "index":0
    }*/

    /**
    "Gauge2":{
          "title":"仪表盘2",
          "name":"Gauge2",
          "type":"PUIGaugeInterface",
          "index":1
    }*/

    /**
    "Gauge3":{
          "title":"仪表盘3",
          "name":"Gauge3",
          "type":"PUIGaugeInterface",
          "index":2
    }*/

    /**
    "Gauge5":{
          "title":"仪表盘5",
          "name":"Gauge5",
          "type":"PUIGaugeInterface",
          "index":4
    }*/

    /**
    "Pie":{
          "title":"饼图",
          "name":"Pie",
          "type":"PUIPieInterface",
          "index":3
    }*/


    //接口
    /**
     * 数据值
     * @param {Number} nValue 数据值
     * @property {Number} DetailValue 0
     */
    SetDetailValue:function (nValue) {
    },

    /**
     * 获取数据值
     * @return {Number}
     */
    GetDetailValue:function () {
    },

}