mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +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")
 | 
						|
}
 |