Files
ArmedPolice/app/model/sys_config.go

12 lines
155 B
Go
Raw Normal View History

2021-11-02 10:02:52 +08:00
package model
2021-11-02 17:01:04 +08:00
import "ArmedPolice/app/common/model"
2021-11-02 10:02:52 +08:00
type SysConfig struct {
*model.SysConfig
}
func NewSysConfig() *SysConfig {
return &SysConfig{}
}