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"`
}