|
@@ -0,0 +1,146 @@
|
|
|
+package eta_business
|
|
|
+
|
|
|
+import (
|
|
|
+ "fmt"
|
|
|
+ "github.com/beego/beego/v2/client/orm"
|
|
|
+ "strings"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+// EtaBusinessMenu ETA商家基础菜单表
|
|
|
+type EtaBusinessMenu struct {
|
|
|
+ MenuId int `orm:"column(menu_id);pk"`
|
|
|
+ ParentId int `description:"父级菜单ID"`
|
|
|
+ Name string `description:"菜单名称或者按钮名称"`
|
|
|
+ RootId int `description:"顶层菜单ID"`
|
|
|
+ Sort string `description:"排序"`
|
|
|
+ Path string `description:"路由地址"`
|
|
|
+ PathName string `description:"路由名称"`
|
|
|
+ IconPath string `description:"菜单图标地址"`
|
|
|
+ Component int `description:"组件路径"`
|
|
|
+ Hidden int `description:"是否隐藏:1-隐藏 0-显示"`
|
|
|
+ HiddenLayout int `description:"是否隐藏layout:1-隐藏 0-显示"`
|
|
|
+ Level int `description:"菜单等级:1-2-3"`
|
|
|
+ IsLevel int `description:"是否为多级菜单:1,只有一级;2,有多级"`
|
|
|
+ LevelPath string `description:"兼容以前menu表的字段"`
|
|
|
+ MenuType int `description:"菜单类型: 0-菜单; 1-按钮; 2-字段(需要特殊处理)"`
|
|
|
+ ButtonCode string `description:"按钮/菜单唯一标识"`
|
|
|
+ CreateTime time.Time `description:"创建时间"`
|
|
|
+ ModifyTime time.Time `description:"更新时间"`
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) TableName() string {
|
|
|
+ return "eta_business_menu"
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) PrimaryId() string {
|
|
|
+ return "menu_id"
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) Create() (err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ id, err := o.Insert(m)
|
|
|
+ if err != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ m.MenuId = int(id)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) CreateMulti(items []*EtaBusinessMenu) (err error) {
|
|
|
+ if len(items) == 0 {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ o := orm.NewOrm()
|
|
|
+ _, err = o.InsertMulti(len(items), items)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) Update(cols []string) (err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ _, err = o.Update(m, cols...)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) Del() (err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
|
|
|
+ _, err = o.Raw(sql, m.MenuId).Exec()
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) GetItemById(id int) (item *EtaBusinessMenu, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
|
|
|
+ err = o.Raw(sql, id).QueryRow(&item)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) GetItemByCondition(condition string, pars []interface{}) (item *EtaBusinessMenu, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s LIMIT 1`, m.TableName(), condition)
|
|
|
+ err = o.Raw(sql, pars).QueryRow(&item)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
|
|
|
+ err = o.Raw(sql, pars).QueryRow(&count)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*EtaBusinessMenu, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ fields := strings.Join(fieldArr, ",")
|
|
|
+ if len(fieldArr) == 0 {
|
|
|
+ fields = `*`
|
|
|
+ }
|
|
|
+ order := `ORDER BY create_time DESC`
|
|
|
+ if orderRule != "" {
|
|
|
+ order = ` ORDER BY ` + orderRule
|
|
|
+ }
|
|
|
+ sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
|
|
|
+ _, err = o.Raw(sql, pars).QueryRows(&items)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+func (m *EtaBusinessMenu) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*EtaBusinessMenu, err error) {
|
|
|
+ o := orm.NewOrm()
|
|
|
+ fields := strings.Join(fieldArr, ",")
|
|
|
+ if len(fieldArr) == 0 {
|
|
|
+ fields = `*`
|
|
|
+ }
|
|
|
+ order := `ORDER BY create_time DESC`
|
|
|
+ if orderRule != "" {
|
|
|
+ order = ` ORDER BY ` + orderRule
|
|
|
+ }
|
|
|
+ sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
|
|
|
+ _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
|
|
|
+ return
|
|
|
+}
|
|
|
+
|
|
|
+// EtaBusinessMenuListResp ETA商家菜单列表响应体
|
|
|
+type EtaBusinessMenuListResp struct {
|
|
|
+ ChoiceList []int `description:"已选菜单"`
|
|
|
+ List []*EtaBusinessMenuItem `description:"菜单列表"`
|
|
|
+}
|
|
|
+
|
|
|
+// EtaBusinessMenuItem ETA商家菜单
|
|
|
+type EtaBusinessMenuItem struct {
|
|
|
+ MenuId int
|
|
|
+ ParentId int `description:"父级菜单ID"`
|
|
|
+ Name string `description:"菜单名称或者按钮名称"`
|
|
|
+ RootId int `description:"顶层菜单ID"`
|
|
|
+ Sort string `description:"排序"`
|
|
|
+ Path string `description:"路由地址"`
|
|
|
+ PathName string `description:"路由名称"`
|
|
|
+ IconPath string `description:"菜单图标地址"`
|
|
|
+ Component int `description:"组件路径"`
|
|
|
+ Hidden int `description:"是否隐藏:1-隐藏 0-显示"`
|
|
|
+ HiddenLayout int `description:"是否隐藏layout:1-隐藏 0-显示"`
|
|
|
+ Level int `description:"菜单等级:1-2-3"`
|
|
|
+ MenuType int `description:"菜单类型: 0-菜单; 1-按钮; 2-字段(需要特殊处理)"`
|
|
|
+ ButtonCode string `description:"按钮/菜单唯一标识"`
|
|
|
+ Children []*EtaBusinessMenuItem `description:"子菜单"`
|
|
|
+}
|