实现HTTP部分功能

This commit is contained in:
刘祥超
2020-09-26 08:06:40 +08:00
parent e12ecca2f6
commit 50731984ec
45 changed files with 1117 additions and 456 deletions

View File

@@ -0,0 +1,20 @@
package models
// 系统配置
type SysSetting struct {
Id uint32 `field:"id"` // ID
UserId uint32 `field:"userId"` // 用户ID
Code string `field:"code"` // 代号
Value string `field:"value"` // 配置值
}
type SysSettingOperator struct {
Id interface{} // ID
UserId interface{} // 用户ID
Code interface{} // 代号
Value interface{} // 配置值
}
func NewSysSettingOperator() *SysSettingOperator {
return &SysSettingOperator{}
}