奖励类型新增门店相关 id

This commit is contained in:
chy
2025-06-13 09:48:18 +08:00
parent fac2bd41b3
commit d7987a02f2
35 changed files with 561 additions and 129 deletions

View File

@ -19,4 +19,5 @@ type Roles struct {
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"` // 更新时间
DeletedAt *gtime.Time `json:"deletedAt" orm:"deleted_at" description:"软删除时间戳"` // 软删除时间戳
IsDeletable bool `json:"isDeletable" orm:"is_deletable" description:"是否可删除0=不可删除1=可删除"` // 是否可删除0=不可删除1=可删除
StoreId int64 `json:"storeId" orm:"store_id" description:"门店ID"` // 门店ID
}