/**
 * 评论管理模块
 */
utils.comment = {
		
		/**
		 * 添加评论
		 * destId : 目标对象ID
		 * destType : 目标对象类型
		 */
		addComment : function(destId , destType){
	
		},
		
		/**
		 * 删除评论
		 * commentId : 评论ID
		 */
		removeComment : function(commentId){
			
		},
		
		/**
		 * 添加回复
		 * toRemarkId : 回复对象
		 * toRemarkType : 回复对象类型
		 * remarkComment : 回复类型
		 */
		addRemark : function(toRemarkId , toRemarkType , remarkComment){
			
		},
		
		/**
		 * 删除回复
		 * remarkID : 回复ID
		 */
		removeRemark : function(remarkId){
			
		}
};
