This commit is contained in:
suyl
2021-10-20 09:25:47 +08:00
parent 2fbcae6263
commit d47257e2fd
3 changed files with 35 additions and 0 deletions

View File

@@ -5451,3 +5451,13 @@ func InsertBrandCategories(ctx *jxcontext.Context, brandID int) (err error) {
}
return err
}
func UpdateStoreTemplate(ctx *jxcontext.Context, storeID int, content, sound string) (err error) {
var (
db = dao.GetDB()
store = &model.Store{}
)
store.ID = storeID
dao.GetEntity(db, store)
return err
}