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.

29 lines
730 B
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.attendance.entity;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("edu_building")
@Schema(description = "教学楼实体")
public class Building extends BaseEntity {
@Schema(description = "教学楼名称")
private String buildingName;
@Schema(description = "教学楼编码")
private String buildingCode;
@Schema(description = "楼层数")
private Integer floors;
@Schema(description = "所属学校ID")
private Long schoolId;
@Schema(description = "状态0-停用 1-正常")
private Integer status;
}