export class PharmacyGenerateBill {
  id: number;
  date: Date;
  patient_id: number;
  ipd_prescription_basic_id: number;
  case_reference_id: number;
  customer_name: string;
  customer_type: string;
  doctor_name: string;
  file: string;
  total: any;
  discount_percentage: any;
  discount: any;
  tax_percentage: any;
  tax: any;
  net_amount: any;
  note: string;
  generated_by: number;
  pharmacy_bill_basic_id: number;
  medicine_batch_detail_id: number;
  new_medicine_batch_detail_id: number;
  quantity: string;
  sale_price: any;
  amount: any;
  type: string;
  section: string;
  payment_mode: string;
  cheque_no: string;
  cheque_date: Date;
  payment_date: Date;
  attachment: string;
  attachment_name: string;
  received_by: number;
  hospital_id: number;
  payment_gateway: any;
  payment_reference_number: any;
  payment_id: any;
  received_by_name:string;
}
