|
@@ -4,6 +4,7 @@ import (
|
|
|
"encoding/json"
|
|
|
"hongze/hongze_clpt/models"
|
|
|
"hongze/hongze_clpt/services"
|
|
|
+ "hongze/hongze_clpt/utils"
|
|
|
)
|
|
|
|
|
|
type TagController struct {
|
|
@@ -81,6 +82,10 @@ func (this *TagController) TagCustomizeList() {
|
|
|
br.ErrMsg = "获取品种信息失败,Err:" + err.Error()
|
|
|
return
|
|
|
}
|
|
|
+ item := new(models.ChartPermissionResp)
|
|
|
+ item.ChartPermissionId = utils.GU_SHOU_ID
|
|
|
+ item.PermissionName = utils.GU_SHOU_NAME
|
|
|
+ listPermission = append(listPermission, item)
|
|
|
|
|
|
resp.List = list
|
|
|
resp.ListPermission = listPermission
|