//此乃本模块与后台交互的方法接口部分
var studentModule = function(format) {
this.module = "";
this.action = "";
this.format = format;
};
//定义数据交互
studentModule.prototype = BusinessObject;
//插入附件数据
studentModule.prototype.insertStudent = function(){};
//修改附件数据
studentModule.prototype.updateStudent = function(){};
//删除附件数据
studentModule.prototype.deleteStudent = function(){};
//附件数据_分页
studentModule.prototype.list = function(){};
//附件所有数据
studentModule.prototype.listAll = function(){};
//创建一个数据操作对象,然后再后续使用
studentModule.studentActAction = new studentModule("json").delegate("studentAct");
//创建一个数据获取对象,然后再后续使用
studentModule.studentDataAction = new studentModule("json").delegate("studentaData");
//说明: 1、所有方法里统一传递josn格式的参数,用于后台交互,如data.listTables(param) ,如没有参数则传'{}',如data.listTables({})
// 2、前后台数据获取传输协议 如:json[{'0':{pageCount':'2','pageNo':'1','pageSize':'20','rowSet':'[{0},{1}....]'}}]
// 3、前后台增删改的返回状态 如:json[{'0':{'rowSet':{'NAME':'-1','VALUE':'保存失败'}}}]