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/dsSso/models/t_base_teacher_org.go

16 lines
1.1 KiB

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
type TBaseTeacherOrg struct {
Id string `xorm:"not null pk comment('主键') CHAR(36)"`
PersonId string `xorm:"not null default '''' comment('人员ID') index CHAR(36)"`
BureauId string `xorm:"not null default '''' comment('所在单位ID') index CHAR(36)"`
OrgId string `xorm:"not null default '''' comment('所在部门ID') index CHAR(36)"`
Bzszdwbz int32 `xorm:"not null default 1 comment('编制所在单位标志 -1不是 1是') TINYINT(1)"`
BUse int32 `xorm:"not null default 1 comment('是否启用 -1未启用 1启用') TINYINT(1)"`
ProvinceCode string `xorm:"not null default '''' comment('所在省行政区划码') CHAR(6)"`
CityCode string `xorm:"not null default '''' comment('所在市行政区划码') CHAR(6)"`
DistrictCode string `xorm:"not null default '''' comment('所在区行政区划码') CHAR(6)"`
MainSchoolId string `xorm:"not null default '''' comment('主校ID') CHAR(36)"`
SortId int32 `xorm:"not null comment('排序号在获取信息时如果排序号大于9999前台不显示') INT(11)"`
}