1 2 3 4 5 6 7 8 9
export class Result { static success(data: any) { return { code: 0, success: true, result: data, }; } }