package stock import "time" //这是更新时间函数 func (this *Session) UpdateTime() { this.times = time.Now().Unix() } //--SESSION管理类-