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_person_duty_charge.go

21 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
import (
"time"
)
type TPersonDutyCharge struct {
Id int64 `xorm:"not null pk autoincr index(id) INT(11)"`
PersonId string `xorm:"not null default '''' comment('人员ID') CHAR(36)"`
CityId string `xorm:"not null comment('人员所在城市ID') CHAR(36)"`
AreaId string `xorm:"not null comment('人员所在区域ID') CHAR(36)"`
BureauId string `xorm:"not null comment('人员所在单位ID') CHAR(36)"`
MainSchoolId string `xorm:"not null comment('人员所在主校ID如果是普通学校就是本校ID') CHAR(36)"`
BUse int64 `xorm:"not null comment('是否要用') INT(11)"`
DutiesId int64 `xorm:"not null comment('职务ID') INT(11)"`
InChargeId int64 `xorm:"not null comment('分管ID') INT(11)"`
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' comment('更新时间戳') index(id) index TIMESTAMP"`
Operator string `xorm:"not null comment('操作人员') CHAR(36)"`
IpAddress int64 `xorm:"not null default 0 comment('操作者IP') BIGINT(11)"`
}