add member model

This commit is contained in:
2024-10-28 12:06:37 +08:00
parent 007c4286d7
commit a94f608b15

9
model/member.go Normal file
View File

@@ -0,0 +1,9 @@
package model
type Member struct {
ID int //工号
Name string
Sex bool //不要把女生安排进男生宿舍male=True
FreeDay int //哪天有空
access int // 遵循报修系统的access enum ,用来标注管理层
}