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

16 lines
664 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 TSysAccountMount struct {
Id int64 `xorm:"not null pk autoincr INT(11)"`
PersonId string `xorm:"not null comment('人员ID') index CHAR(36)"`
IdentityId int64 `xorm:"not null comment('身份ID') INT(11)"`
MainPersonId string `xorm:"not null default '''' comment('主账号人员ID') index CHAR(255)"`
MainIdentityId int64 `xorm:"not null comment('主账号身份ID') INT(11)"`
AccountType int64 `xorm:"not null comment('账号类型 1主账号 2子账号') INT(11)"`
UpdateTs time.Time `xorm:"not null default 'current_timestamp()' TIMESTAMP"`
}