export interface ITablLineResponse { colIndex: number; colValue: string; colTotal: number; colFlbh: number; } export class TTablLineResponse implements ITablLineResponse { colIndex: number = 0; colValue: string = ""; colTotal: number = 0; colFlbh: number = 0; }