package com.nebula.erp.sales.requestmodel;

import com.nebula.erp.sales.model.Prescriptions;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class PrescriptionItemRequest {
    private Long prescription_id;
    private String type;
    private String product_id;
    private String product_name;
    private Double product_price;
    private Integer quantity;
    private Prescriptions prescription;
    public Long getId() {
        return prescription_id;
    }
}