enterprise/common/model/staff_info.go

24 lines
397 B
Go
Raw Normal View History

2023-08-31 22:20:40 +08:00
package model
var (
StaffInfoStatusNormal = 1
StaffInfoStatusDisable = 2
)
type StaffInfo struct {
Id int64
Username string
Realname string
2023-09-01 20:01:30 +08:00
StaffType string
2023-08-31 22:20:40 +08:00
Phone string
Idno string
Salary string
EntryDate string
OfficialDate string
BirthDate string
BankName string
BankCard string
CreateTime int64
UpdateTime int64
}