update_employee.go
871 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package command
import (
"fmt"
"time"
"github.com/astaxie/beego/validation"
)
type UpdateEmployeeCommand struct {
// 统一用户UID
Uid int64 `json:"uid" valid:"Required"`
// 员工姓名
EmployeeName string `json:"employeeName,omitempty"`
// 员工账号
EmployeeAccount string `json:"employeeAccount,omitempty"`
// 员工头像URL
EmployeeAvatarUrl string `json:"employeeAvatarUrl,omitempty"`
// 员工权限集合
Permissions []int `json:"permissions,omitempty"`
// 创建时间
CreateTime time.Time `json:"createTime"`
}
func (updateEmployeeCommand *UpdateEmployeeCommand) ValidateCommand() error {
valid := validation.Validation{}
b, err := valid.Valid(updateEmployeeCommand)
if err != nil {
return err
}
if !b {
for _, validErr := range valid.Errors {
return fmt.Errorf("%s %s", validErr.Key, validErr.Message)
}
}
return nil
}