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.

12 lines
597 B

2 months ago
package models
type BotBrokerageSetting struct {
BrokType int `xorm:"not null comment('返佣类型:0注册,1开仓,2平仓') TINYINT(1)"`
GrandpaFee string `xorm:"not null comment('爷级ID') DECIMAL(36,18)"`
Id int `xorm:"not null pk autoincr INT"`
ParentFee string `xorm:"not null comment('父级ID') DECIMAL(36,18)"`
PayType int `xorm:"not null comment('结算方式:0固定费用,1按比例结算') TINYINT(1)"`
Remark string `xorm:"not null comment('备注') VARCHAR(20)"`
TopFee string `xorm:"not null comment('祖级ID') DECIMAL(36,18)"`
}