blog_backend_api/model/hardware.go

29 lines
620 B
Go
Raw Normal View History

package model
2020-03-25 02:57:25 +00:00
import (
"background/db"
"github.com/pkg/errors"
"qiniupkg.com/x/log.v7"
)
// this api is based on elasticsearch
type Hardware struct {
ID int32 `json:"id"`
BuyDate string `json:"buy_date"` //购入时间
Name string `json:"name"` // 名字
Desc string `json:"desc"` // 描述
Pic string `json:"pic"` // 图片
Doc string `json:"doc"` //文档资料
}
2020-03-25 02:57:25 +00:00
func (this *Hardware )CreateHardware( ) error{
if nil == this{
return errors.New("null pointer")
}
e := db.GetElastic().Create("hardware","0","sdfasdfasd",*this)
2020-03-25 02:57:25 +00:00
if nil != e{
log.Print(e.Error())
return e
}
return nil;
}