• haoyanbin's avatar
    1 · 9bf9e037
    haoyanbin authored
    9bf9e037
sys_conf.go 732 Bytes
// 自动生成模板DataMedComment
package model

import (
	"time"
)

type SysConf struct {
	Id         int       `json:"id" form:"id" gorm:"column:id;comment:;type:int;size:10;"` // 主键ID
	ConfName   string    `json:"confName" form:"confName" gorm:"column:conf_name;comment:;type:varchar(255);"`
	ConfVal    string    `json:"confVal" form:"confVal" gorm:"column:conf_val;comment:;type:varchar(1000);"`
	UserId     int       `json:"userId" form:"userId" gorm:"column:user_id;comment:;type:int;size:10;"`
	CreateTime time.Time `json:"createTime" form:"createTime" gorm:"column:create_time;comment:;type:timestamp;"`
	UpdateTime time.Time `json:"updateTime" form:"updateTime" gorm:"column:update_time;comment:;type:timestamp;"`
}