123456789101112131415161718192021 |
- package service
-
- import (
- "wechat-conf/utils"
- )
-
- const (
- PAGENUM = 10
- )
-
- // SysServ 系统处理
- type SysServ struct {
- ctx *utils.Context
- }
-
- // NewSysServ 初始化
- func NewSysServ(ctx *utils.Context) *SysServ {
- return &SysServ{
- ctx: ctx,
- }
- }
|