parent
935defe59d
commit
0551efed08
@ -1,15 +1,13 @@
|
||||
package com.example.attendance.entity;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Data
|
||||
public class PointsRequest {
|
||||
private BigDecimal pointsDelta;
|
||||
|
||||
public BigDecimal getPointsDelta() {
|
||||
return pointsDelta;
|
||||
}
|
||||
|
||||
public void setPointsDelta(BigDecimal pointsDelta) {
|
||||
this.pointsDelta = pointsDelta;
|
||||
}
|
||||
}
|
||||
|
@ -1,43 +1,17 @@
|
||||
package com.example.attendance.entity;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Data
|
||||
public class Student {
|
||||
private Long id;
|
||||
private String studentNumber; // 学号
|
||||
private String name; // 姓名
|
||||
private BigDecimal points; // 积分
|
||||
|
||||
// getters and setters
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getStudentNumber() {
|
||||
return studentNumber;
|
||||
}
|
||||
|
||||
public void setStudentNumber(String studentNumber) {
|
||||
this.studentNumber = studentNumber;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public BigDecimal getPoints() {
|
||||
return points;
|
||||
}
|
||||
|
||||
public void setPoints(BigDecimal points) {
|
||||
this.points = points;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in new issue