You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dsMin/dsFillOut/models/t_base_app_visiable.go

16 lines
685 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package models
import (
"time"
)
type TBaseAppVisiable struct {
Id int64 `xorm:"not null pk autoincr comment('主键') INT(11)"`
Appid string `xorm:"not null comment('集成系统ID') index CHAR(32)"`
CityId string `xorm:"not null default ''-1'' comment('哪个城市可见') CHAR(36)"`
AreaId string `xorm:"not null default ''-1'' comment('哪个地区可见') CHAR(36)"`
BureauId string `xorm:"not null default ''-1'' comment('哪个单位可见') CHAR(36)"`
LevelId int64 `xorm:"not null comment('哪一级的123') INT(11)"`
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('时间戳') TIMESTAMP"`
}