mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
9 lines
220 B
Go
9 lines
220 B
Go
package models
|
|
|
|
import timeutil "github.com/iwind/TeaGo/utils/time"
|
|
|
|
// IsExpired 判断套餐是否过期
|
|
func (this *UserPlan) IsExpired() bool {
|
|
return len(this.DayTo) == 0 || this.DayTo < timeutil.Format("Y-m-d")
|
|
}
|