7 lines
82 B
Java
7 lines
82 B
Java
package spring.aop.entity;
|
|
|
|
public interface Exam {
|
|
int total();
|
|
float avg();
|
|
}
|