附近小店
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

db_cate.go 313 B

2 months ago
123456789101112131415
  1. package db
  2. import (
  3. "applet/app/db/model"
  4. "xorm.io/xorm"
  5. )
  6. func GetCate(eg *xorm.Engine, storeId string) *[]model.CommunityTeamCate {
  7. var data []model.CommunityTeamCate
  8. err := eg.Where("is_show=1 and uid=?", storeId).OrderBy("sort desc,id desc").Find(&data)
  9. if err != nil {
  10. return nil
  11. }
  12. return &data
  13. }