Browse Source

更新

master
huangjiajun 1 month ago
parent
commit
624f5bf7ca
3 changed files with 11 additions and 3 deletions
  1. +4
    -0
      app/hdl/hdl_role.go
  2. +6
    -2
      app/md/md_role.go
  3. +1
    -1
      go.mod

+ 4
- 0
app/hdl/hdl_role.go View File

@@ -186,6 +186,8 @@ func AddRole(c *gin.Context) {
Name: req.Name,
State: enum.RoleStateForNormal,
Memo: req.Memo,
Logo: req.Logo,
Label: req.Label,
CreateAt: now.Format("2006-01-02 15:04:05"),
UpdateAt: now.Format("2006-01-02 15:04:05"),
})
@@ -231,6 +233,8 @@ func UpdateRole(c *gin.Context) {
}
role.Name = req.Name
role.Memo = req.Memo
role.Logo = req.Logo
role.Label = req.Label
_, err = roleDb.UpdateRole(role, "name", "memo")
if err != nil {
e.OutErr(c, e.ERR_DB_ORM, err.Error())


+ 6
- 2
app/md/md_role.go View File

@@ -17,14 +17,18 @@ type UpdateRoleStateReq struct {
}

type AddRoleReq struct {
Name string `json:"name" binding:"required" label:"名称"`
Memo string `json:"memo" binding:"required" label:"备注"`
Name string `json:"name" binding:"required" label:"名称"`
Memo string `json:"memo" binding:"required" label:"备注"`
Logo string `json:"logo" label:"左边图标"`
Label string `json:"label" label:"身份标签"`
}

type UpdateRoleReq struct {
RoleId int `json:"role_id" binding:"required" label:"id"`
Name string `json:"name" binding:"required" label:"名称"`
Memo string `json:"memo" binding:"required" label:"备注"`
Logo string `json:"logo" label:"左边图标"`
Label string `json:"label" label:"身份标签"`
}

type RoleBindPermissionGroupReq struct {


+ 1
- 1
go.mod View File

@@ -5,7 +5,7 @@ go 1.18
//replace code.fnuoos.com/zhimeng/model.git => E:/company/ad/models

require (
code.fnuoos.com/zhimeng/model.git v0.0.3-0.20240930023755-c7d7ee377ac6
code.fnuoos.com/zhimeng/model.git v0.0.3-0.20240930062518-b791878f3a7f
github.com/afex/hystrix-go v0.0.0-20180502004556-fa1af6a1f4f5
github.com/boombuler/barcode v1.0.1
github.com/dchest/uniuri v0.0.0-20200228104902-7aecb25e1fe5


Loading…
Cancel
Save