package datamodel // GroupMember data struct type GroupMember struct { GmId int64 `json:"gmId" xorm:"bigint 'gm_id' not null comment('主键ID')"` OcId int64 `json:"ocId" xorm:"bigint 'oc_id' not null comment('组织ID:公司或机构或单位ID')"` GroupId int64 `json:"groupId" xorm:"bigint 'group_id' not null comment('主键ID')"` AccountId int64 `json:"accountId" xorm:"bigint 'account_id' not null comment('主键ID')"` IsFixed int64 `json:"isFixed" xorm:"bigint 'is_fixed' comment('主键ID')"` } // TableName : table name of database func (t *GroupMember) TableName() string { return "s_group_member" }