This commit is contained in:
Jay 2018-09-26 16:17:54 +08:00
parent a6c260096a
commit a3534d7b04
2 changed files with 16 additions and 4 deletions

View File

@ -1,6 +1,9 @@
package model
import "time"
import (
"database/sql"
"time"
)
// LineGroup - struct
type LineGroup struct {
@ -42,6 +45,9 @@ func CheckGroupOwner(user, g string) (exists bool, err error) {
func GetLineGroup(id string) (g *LineGroup, err error) {
g = &LineGroup{}
err = x.Get(g, `select * from "public"."line_group" where "id" = $1`, id)
if err == sql.ErrNoRows {
return nil, nil
}
return
}
@ -49,8 +55,8 @@ func GetLineGroup(id string) (g *LineGroup, err error) {
func AddLineGroup(name, owner string, notify bool) (g *LineGroup, err error) {
g = &LineGroup{}
err = x.Get(g, `insert into "public"."line_group" ("name", "owner", "notify") values ($1, $2, $3)`, name, owner, notify)
if err != nil {
return nil, err
if err == sql.ErrNoRows {
return nil, nil
}
return
}

View File

@ -1,6 +1,9 @@
package model
import "time"
import (
"database/sql"
"time"
)
// LineUser -
type LineUser struct {
@ -14,6 +17,9 @@ type LineUser struct {
func GetLineUserByID(id string) (u *LineUser, err error) {
u = &LineUser{}
err = x.Get(u, `select * from "public"."line_user" where "id" = $1`, id)
if err == sql.ErrNoRows {
return nil, nil
}
return
}