Files
scheduler/model/member.go
2024-10-28 12:06:37 +08:00

10 lines
243 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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