/**
* @constructor
*/
function XUISecurityAccess() {
}
XUISecurityAccess.prototype = {
//接口
/**
* 按名称检索
* @param {String} strText
*/
SearchByName:function (strText) {
},
/**
* 添加一项
* @param {Boolean} bDsiplay 是否显示
* @param {Boolean} bError 是否传入错误图标
* @param {String} strSerial 序号名
* @param {String} strName 姓名
* @param {String} strDepartment 部门
* @param {String} strIdentifier 编号
* @param {String} strCard 卡号
* @param {String} strTime 时间
* @param {String} strPassage 通道名称
* @param {String} strOpen 开门类型
* @param {String} strevent 事件类型
*/
AddItem:function (bDsiplay,bError,strSerial,strName,strDepartment,strIdentifier,strCard,strTime,strPassage,strOpen,strevent) {
},
/**
* 删除列表所有
*/
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) {
},
}