func (a *Agent) InsertOne() error { a.Id = utils.Random().RandomString("agent", 10) err := base.InsertOne(a) if err != nil { beego.Error("InsertOne Affected", "Err=>", err) } return err }
// Insert func (this *Server) InsertOne() error { this.Id = utils.Random().RandomString("Server", 10) err := base.InsertOne(this) if err != nil { beego.Error("InsertOne Affected", "Err=>", err) } return err }
func (this *User) InsertOne() error { this.Id = utils.Random().RandomString("user", 10) this.Password = EnPwd(this.Password) err := base.InsertOne(this) if err != nil { beego.Error("InsertOne Affected", "Err=>", err) } return err }