/*
 * File: src/main/java/purchase/requestmodel/PurchaseItemRequest.java
 * Description: This request model class represents the structure for creating or updating
 * purchase items in the ERP system. It includes fields for the purchase order, product details,
 * quantity, creator information, and tenant details. The model supports data transfer during
 * purchase item operations, ensuring consistent management of purchase-related data within the
 * ERP system.
*/

package com.nebula.erp.purchase.requestmodel;

import lombok.Getter;
import lombok.Setter;
import com.nebula.erp.purchase.model.Purchase;

@Getter
@Setter
public class PurchaseItemRequest {
    private Long purchase_order_id;
    private Long product_id;
    private Integer quantity;
    private Purchase purchase_order;

    public Long getId() {
        return purchase_order_id;
    }
}