|
|
@@ -255,6 +255,30 @@ public abstract class SaBaseLoginUser {
|
|
|
@ApiModelProperty(value = "教育身份", position = 7)
|
|
|
private String eduIdentity;
|
|
|
|
|
|
+ /** 专业id */
|
|
|
+ @ApiModelProperty(value = "专业id", position = 7)
|
|
|
+ private String majorId;
|
|
|
+
|
|
|
+ /** 专业名称 */
|
|
|
+ @ApiModelProperty(value = "专业名称", position = 7)
|
|
|
+ private String majorIdName;
|
|
|
+
|
|
|
+ /** 班级id */
|
|
|
+ @ApiModelProperty(value = "班级id", position = 7)
|
|
|
+ private String gradesId;
|
|
|
+
|
|
|
+ /** 班级名称 */
|
|
|
+ @ApiModelProperty(value = "班级名称", position = 7)
|
|
|
+ private String gradesIdName;
|
|
|
+
|
|
|
+ /** 学号 */
|
|
|
+ @ApiModelProperty(value = "学号", position = 7)
|
|
|
+ private String studentNum;
|
|
|
+
|
|
|
+ /** 学届 */
|
|
|
+ @ApiModelProperty(value = "学届", position = 7)
|
|
|
+ private String fallDue;
|
|
|
+
|
|
|
/** 是否可登录,由继承类实现 */
|
|
|
public abstract Boolean getEnabled();
|
|
|
|