|
|
|
@ -1,9 +1,9 @@
|
|
|
|
|
package com.ibeetl.jlw.entity;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import cn.jlw.validate.ValidateConfig;
|
|
|
|
|
import com.ibeetl.admin.core.annotation.Dict;
|
|
|
|
|
import com.ibeetl.admin.core.entity.BaseEntity;
|
|
|
|
|
import lombok.ToString;
|
|
|
|
|
import org.beetl.sql.annotation.entity.AutoID;
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
@ -13,7 +13,6 @@ import java.util.Date;
|
|
|
|
|
* 班级管理
|
|
|
|
|
* gen by Spring Boot2 Admin 2021-06-19
|
|
|
|
|
*/
|
|
|
|
|
@ToString
|
|
|
|
|
public class SchoolClass extends BaseEntity{
|
|
|
|
|
|
|
|
|
|
//ID
|
|
|
|
@ -173,5 +172,8 @@ public class SchoolClass extends BaseEntity{
|
|
|
|
|
this.userId = userId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return JSONUtil.toJsonStr(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|