From a0042fa1ed3c1fba787c361e3bd9e098d6862d18 Mon Sep 17 00:00:00 2001 From: dengbiao Date: Mon, 5 Aug 2024 16:57:26 +0800 Subject: [PATCH] update --- src/models/service_award_dividend_relation.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/service_award_dividend_relation.go b/src/models/service_award_dividend_relation.go index 8209897..3ac4b41 100644 --- a/src/models/service_award_dividend_relation.go +++ b/src/models/service_award_dividend_relation.go @@ -7,6 +7,7 @@ type ServiceAwardDividendRelation struct { BindUid int `json:"bind_uid" xorm:"not null default 0 comment('绑定uid') INT(11)"` VipLevel int `json:"vip_level" xorm:"not null default 0 comment('会员等级id') INT(11)"` AllocationNums int `json:"allocation_nums" xorm:"not null default 0 comment('分配次数') INT(11)"` + RegionId int `json:"region_id" xorm:"not null default 0 comment('区域id(同 regional_agent_user_belong 的region_id)') INT(11)"` CreateAt string `json:"create_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('创建时间') DATETIME"` UpdateAt string `json:"update_at" xorm:"not null default 'CURRENT_TIMESTAMP' comment('更新时间') DATETIME"` }