You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
699 B
Go

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package price_default
type PriceDefault struct {
Id uint64 `xorm:"pk autoincr 'id'"`
Amount int64 `xorm:"not null 'amount'"` // 单篇文章价格(分)
FirstMontDiscount float32 `xorm:"null"` //首月优惠折扣
OneMonthPrice int64 `xorm:"not null 'one_month_price'"` // 1个月价格
ThreeMonthsPrice int64 `xorm:"not null 'three_months_price'"` // 3个月价格
SixMonthsPrice int64 `xorm:"not null 'six_months_price'"` // 6个月价格
OneYearPrice int64 `xorm:"not null 'one_year_price'"` // 1年价格
Discount float32 `xorm:"not null"`
}