mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-21 18:20:47 +00:00
14 lines
299 B
Go
14 lines
299 B
Go
package web_set_service
|
|
|
|
import "gfast/app/model/admin/web_set"
|
|
|
|
// 更新站点信息
|
|
func UpdateSave(req *web_set.UpdateReq) error {
|
|
return web_set.UpdateSave(req)
|
|
}
|
|
|
|
// GetInfoByID 根据ID查询站点信息
|
|
func GetInfoByID(id int) (*web_set.Entity, error) {
|
|
return web_set.GetInfoByID(id)
|
|
}
|