You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.2 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.sztzjy.linkCommerce.entity;
import java.util.Date;
import io.swagger.annotations.ApiModelProperty;
/**
* 班级信息表
*
* @author whb
* school_class
*/
public class SchoolClass {
@ApiModelProperty(notes = "班级ID主键建议格式CLA_专业ID_序号CLA_MAJ_FAC001_01")
private String schoolClassId;
@ApiModelProperty(notes = "专业ID关联school_major表")
private String schoolMajorId;
@ApiModelProperty(notes = "班级名称2023级软件工程1班")
private String className;
@ApiModelProperty(notes = "班级编号(可包含年份+序列号2023C001")
private String classSn;
@ApiModelProperty(notes = "状态1-正常 2-软删除")
private Boolean status;
@ApiModelProperty(notes = "创建时间")
private Date createTime;
@ApiModelProperty(notes = "学校ID")
private String schoolId;
public String getSchoolClassId() {
return schoolClassId;
}
public void setSchoolClassId(String schoolClassId) {
this.schoolClassId = schoolClassId == null ? null : schoolClassId.trim();
}
public String getSchoolMajorId() {
return schoolMajorId;
}
public void setSchoolMajorId(String schoolMajorId) {
this.schoolMajorId = schoolMajorId == null ? null : schoolMajorId.trim();
}
public String getClassName() {
return className;
}
public void setClassName(String className) {
this.className = className == null ? null : className.trim();
}
public String getClassSn() {
return classSn;
}
public void setClassSn(String classSn) {
this.classSn = classSn == null ? null : classSn.trim();
}
public Boolean getStatus() {
return status;
}
public void setStatus(Boolean status) {
this.status = status;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public String getSchoolId() {
return schoolId;
}
public void setSchoolId(String schoolId) {
this.schoolId = schoolId == null ? null : schoolId.trim();
}
}