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.
8 lines
302 B
8 lines
302 B
package models
|
|
|
|
type BotPreFundStockRefer struct {
|
|
Id int `xorm:"not null pk autoincr INT"`
|
|
Name string `xorm:"not null comment('基金名称') VARCHAR(255)"`
|
|
Rate string `xorm:"not null comment('收益率 10 为 10%') DECIMAL(5,2)"`
|
|
Year int `xorm:"not null comment('年份') SMALLINT"`
|
|
}
|
|
|