You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
187 B
17 lines
187 B
package com.xiaomage.entity;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 学生
|
|
*
|
|
* @author Admin
|
|
* @date 2022/12/25
|
|
*/
|
|
@Data
|
|
public class Student {
|
|
private String stuNo;
|
|
private String name;
|
|
|
|
}
|
|
|