export interface IGzzdLineResponse { colIndex: number; colValue: string; colTotal: number; colFlbh: number; /** * 是否修改 */ isEdit: boolean; } export class TGzzdLineResponse implements IGzzdLineResponse { colIndex: number = 0; colValue: string = ""; colTotal: number = 0; colFlbh: number = 0; isEdit: boolean = false; }