/* * @Author: 陶秋峰 * @Date: 2015-11-21 16:26:03 * @Last Modified by: 陶秋峰 * @Last Modified time: 2015-11-21 16:27:57 * @CopyRight */ export default class Feedback{ public flag = true; public msg: any; constructor(flag?: boolean, msg?: any){ this.flag = flag !== undefined ? flag : true; this.msg = msg; } }