login.go 278 字节
package command

type LoginCommand struct {
	Code       string `json:"code" valid:"Required"`       //授权code
	PlatformId int    `json:"platformId" valid:"Required"` //登录平台ID,constant.IdPlatformAdmin=28 绩效管理后台  constant.IdPlatformUser=29 员工绩效
}