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.
27 lines
812 B
TypeScript
27 lines
812 B
TypeScript
import { Response } from "./response";
|
|
|
|
export class GetMoItemHistoryList extends Response {
|
|
public REQUEST_NUMBER: string;
|
|
public ITEM_CODE: string;
|
|
public DESCRIPTION: string;
|
|
public UNIT_OF_MEASURE: string;
|
|
public QUANTITY: number;
|
|
public DATE_REQUIRED: Date;
|
|
public LINE_STATUS_DIS: string;
|
|
public STATUS_DATE: Date;
|
|
public TRANSACTION_TYPE_NAME: string;
|
|
public ORGANIZATION_ID: number;
|
|
public ORGANIZATION_CODE: string;
|
|
public ORGANIZATION_NAME: string;
|
|
public OPERATING_UNIT_NAM: string;
|
|
public FROM_SUBINVENTORY_CODE: string;
|
|
public FROM_LOCATOR: string;
|
|
public TO_SUBINVENTORY_CODE: string;
|
|
public TO_LOCATOR: string;
|
|
public SHIP_TO_LOCATION: string;
|
|
public ROW_NUM: number;
|
|
public NO_OF_ROWS: number;
|
|
public FROM_ROW_NUM: number;
|
|
public TO_ROW_NUM: number;
|
|
}
|