修改登录、管理员详情、对接销售服务

This commit is contained in:
2026-08-28 16:03:06 +08:00
parent 914a11d05a
commit 3759433495
6 changed files with 152 additions and 12 deletions
+8
View File
@@ -2,6 +2,11 @@ package dao
import "lone-services/pkg/utils"
const (
AdminTypeAdmin = 2
AdminTypeSale = 1
)
// Admin 公司内部人员表
type Admin struct {
Id int64 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT;comment:ID" json:"id"`
@@ -53,6 +58,9 @@ type AdminInfo struct {
Type uint8 `json:"type" gorm:"type"` // 1:销售,2:管理员
SaleId int64 `json:"sale_id" gorm:"sale_id"` // 销售ID
FailNumber int `gorm:"column:fail_number;type:tinyint(2);default:0;comment:连续登录失败次数" json:"fail_number"`
SaleName string `json:"sale_name" gorm:"-"`
GroupId int64 `json:"group_id" gorm:"-"`
GroupName string `json:"group_name" gorm:"-"`
}
type AdminInfoRet struct {