|
@@ -0,0 +1,118 @@
|
|
|
+package com.qmth.distributed.print.business.entity;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
+import com.qmth.teachcloud.common.base.BaseEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 学校id
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author wangliang
|
|
|
+ * @since 2021-08-02
|
|
|
+ */
|
|
|
+@ApiModel(value = "BasicStudent对象", description = "学校id")
|
|
|
+public class BasicStudent extends BaseEntity implements Serializable {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学校id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long schoolId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学生姓名")
|
|
|
+ private String studentName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "学生编号")
|
|
|
+ private String studentCode;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "电话号码")
|
|
|
+ private String phoneNumber;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "校区主键")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long campusId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "班级")
|
|
|
+ private String clazz;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "可用状态(1:可用,0:不可用)")
|
|
|
+ private Boolean enable;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "可操作人机构id")
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
+ private Long orgId;
|
|
|
+
|
|
|
+ public static long getSerialVersionUID() {
|
|
|
+ return serialVersionUID;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getSchoolId() {
|
|
|
+ return schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSchoolId(Long schoolId) {
|
|
|
+ this.schoolId = schoolId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentName() {
|
|
|
+ return studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentName(String studentName) {
|
|
|
+ this.studentName = studentName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getStudentCode() {
|
|
|
+ return studentCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentCode(String studentCode) {
|
|
|
+ this.studentCode = studentCode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhoneNumber() {
|
|
|
+ return phoneNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhoneNumber(String phoneNumber) {
|
|
|
+ this.phoneNumber = phoneNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCampusId() {
|
|
|
+ return campusId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCampusId(Long campusId) {
|
|
|
+ this.campusId = campusId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getClazz() {
|
|
|
+ return clazz;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClazz(String clazz) {
|
|
|
+ this.clazz = clazz;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getEnable() {
|
|
|
+ return enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setEnable(Boolean enable) {
|
|
|
+ this.enable = enable;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getOrgId() {
|
|
|
+ return orgId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrgId(Long orgId) {
|
|
|
+ this.orgId = orgId;
|
|
|
+ }
|
|
|
+}
|