Class DB.EmployeeSalesEntry

java.lang.Object
team75.model.DB.EmployeeSalesEntry
Enclosing class:
DB

public static class DB.EmployeeSalesEntry extends Object
Per-employee sales performance data.
Author:
Raghu
  • Field Details

    • employeeId

      public final int employeeId
    • employeeName

      public final String employeeName
    • totalOrders

      public final int totalOrders
    • totalRevenue

      public final BigDecimal totalRevenue
  • Constructor Details

    • EmployeeSalesEntry

      public EmployeeSalesEntry(int employeeId, String employeeName, int totalOrders, BigDecimal totalRevenue)
      Parameters:
      employeeId - the employee's ID
      employeeName - the employee's name
      totalOrders - number of orders placed by this employee
      totalRevenue - total revenue from this employee's orders
  • Method Details