/**
* @constructor
*/
function XUIInspection() {
}
XUIInspection.prototype = {
//接口
/**
* 添加一项
* @param {String} strswitch error错误normal正常
* @param {String} strSerial 序号名
* @param {String} strComName 设备编号
* @param {String} strUserName 防区号
* @param {String} strlabel 舱室
* @param {String} strdescribe 桩号
* @param {String} strNewValue 在线状态
* @param {String} strOldValue 运行状态
* @param {String} stralarmVlue 手动(自动)
* @param {String} strareaVlue 远程(就地)
* @param {String} strReasonName 故障原因
* @param {String} strReasonTime 时间
*/
AddItem:function (strswitch,strSerial,strComName,strUserName,strlabel,strdescribe,strNewValue,strOldValue,stralarmVlue,strareaVlue,strReasonName,strReasonTime) {
},
/**
* 删除列表所有
*/
RemoveAll:function () {
},
/**
* 按索引删除一项
* @param {Number} nIndex 索引从0开始
* @property {Number} removeIndex 0
*/
RemoveByIndex:function (nIndex) {
},
/**
* 按索引设置头部名称
* @param {Number} nIndex 索引从0开始
* @param {String} strName 项的名称
* @property {Collection} NameAndIconByIndex [0,"序号"]
*/
SetNameByIndex:function (nIndex,strName) {
},
}