You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
704 B
TypeScript
24 lines
704 B
TypeScript
//import { Response } from './response';
|
|
import { Response } from 'src/app/hmg-common/services/models/response';
|
|
|
|
export class QuotationAnalysisList extends Response {
|
|
public QUOT_NUM: string;
|
|
public ITEM_CODE: string;
|
|
public QUOT_QTY: number;
|
|
public QUOT_UNIT_PRICE: number;
|
|
public QUOT_BONUS_QTY: string;
|
|
public QUOT_MFG_PART_NUM: string;
|
|
public RFQ_QTY: number;
|
|
public ROW_NUM: number;
|
|
public FROM_ROW_NUM: number;
|
|
public VENDOR_NAME: string;
|
|
public ITEM_DESC: string;
|
|
public QUOT_UOM: string;
|
|
public QUOT_LINE_TOTAL: number;
|
|
public QUOT_DELIVERY_DATE: string;
|
|
public RFQ_NUM: string;
|
|
public RFQ_UOM: string;
|
|
public NO_OF_ROWS: number;
|
|
public TO_ROW_NUM: number;
|
|
}
|