- package datamodels
- // GroupMemberPosition
- type GroupMemberPosition struct {
- GmpId int64 `json:"gmpid" form:"gmpid" xorm:"bigint 'gmp_id' pk not null comment('主键ID')"`
- OcId int64 `json:"ocId" form:"ocId" xorm:"bigint 'oc_id' pk not null comment('组织ID:公司或机构或单位ID')"`
- GroupId int64 `json:"groupId" form:"groupId" xorm:"bigint 'group_id' not null comment('群组ID')"`
- AccountId int64 `json:"accountId" form:"accountId" xorm:"bigint 'account_id' not null comment('帐号ID')"`
- PositionId int64 `json:"positionId" form:"positionId" xorm:"bigint 'position_id' not null comment('岗位ID')"`
- IsFixed int64 `json:"isFixed" form:"isFixed" xorm:"bigint 'is_fixed' comment('是否可修改')"`
- }
- // TableName: table name of database
- func (t *GroupMemberPosition) TableName() string {
- return "s_group_member_position"
- }
|