/* * @Author: 陶秋峰 * @Date: 2015-11-21 15:50:01 * @Last Modified by: 陶秋峰 * @Last Modified time: 2015-11-21 15:51:48 * @CopyRight */ export interface Ioav{ o: string; a: string; v: any; } export default class OAV implements Ioav{ o: string; a: string; v: any; constructor(o: string, a: string, v?: any){ this.o = o; this.a = a; this.v = v; } }