package com.bill.electricity.entity;
import jakarta.persistence.*;
@Entity
@Table(name = "bill")
public class Bill {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String customerName;
private String month;
private double amount;
// Getters and Setters
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getMonth() {
return month;
}
public void setMonth(String month) {
this.month = month;
}
public double getAmount() {
return amount;
}
public void setAmount(double amount) {
this.amount = amount;
}
}
Submit your DMCA takedown request here to
report copyright infringement.