kefu/types/constant.go

16 lines
250 B
Go
Raw Permalink Normal View History

2024-12-10 02:50:12 +00:00
package types
type constant struct {
AccountForbidden int64
SuperAdminRoleId uint
EntRoleId uint
AgentRoleId uint
}
var Constant = &constant{
AccountForbidden: 1,
SuperAdminRoleId: 1,
EntRoleId: 2,
AgentRoleId: 3,
}