Browse Source

backend api

Rick.Lan 1 week ago
parent
commit
88b7df4110

+ 2 - 0
.gitignore View File

@@ -1,3 +1,5 @@
1 1
 sws_xcx.exe
2 2
 sws_xcx.exe~
3 3
 sws_xcx
4
+.idea/
5
+.vscode/

+ 1 - 0
conf/app.conf View File

@@ -4,6 +4,7 @@ runmode = test
4 4
 autorender = false
5 5
 copyrequestbody = true
6 6
 EnableDocs = true
7
+sessionon = true
7 8
 
8 9
 
9 10
 enablexsrf = false

+ 31 - 0
controllers/admin/admin_api_base_controller.go View File

@@ -0,0 +1,31 @@
1
+package admin
2
+
3
+import (
4
+	"net/http"
5
+	"sws_xcx/controllers"
6
+	"sws_xcx/enums"
7
+	"sws_xcx/models"
8
+
9
+	"github.com/astaxie/beego"
10
+)
11
+
12
+func ApiControllersRegisterRouters() {
13
+	beego.Router("xcx/api/admin/login", &LoginApiController{}, "post:Login")
14
+	beego.Router("xcx/api/admin/getdevicelist", &DeviceApiController{}, "get:GetDeviceList")
15
+	beego.Router("xcx/api/admin/getdevicedetail", &DeviceApiController{}, "get:GetDeviceDetail")
16
+
17
+}
18
+
19
+type BaseAdminApiController struct {
20
+	controllers.BaseApiAuthController
21
+	Admin models.SysAdminVO
22
+}
23
+
24
+func (c *BaseAdminApiController) Prepare() {
25
+	admin := c.GetSession("admin_info")
26
+	if admin == nil {
27
+		c.ServeFailJsonSendAndStop(http.StatusUnauthorized, enums.ErrorCodeNotLogin, "用户未登录")
28
+		return
29
+	}
30
+	c.Admin = admin.(models.SysAdminVO)
31
+}

+ 56 - 0
controllers/admin/device_api_controller.go View File

@@ -0,0 +1,56 @@
1
+package admin
2
+
3
+import "sws_xcx/service"
4
+
5
+type DeviceApiController struct {
6
+	BaseAdminApiController
7
+}
8
+
9
+// @Title GetDeviceList
10
+// @Description 获取设备列表
11
+// @Param   pageNum query int true "当前页(从1开始)"
12
+// @Param   pageSize query int true "分页大小"
13
+// @Param   deviceType query string false "设备类型"
14
+// @Success 200 {array} models.Device success
15
+// @Failure 500 error
16
+// @router /getdevicelist [get]
17
+func (c *DeviceApiController) GetDeviceList() {
18
+
19
+	pageNum, _ := c.GetInt("pageNum", 1)
20
+	pageSize, _ := c.GetInt("pageSize", 30)
21
+	deviceType := c.GetString("keyword")
22
+
23
+	devices, total, err := service.NewDeviceService().GetDeviceList1(pageNum, pageSize, deviceType)
24
+	if err != nil {
25
+		c.ServeDynamicFailJsonSend(err.Error())
26
+		return
27
+	}
28
+
29
+	c.ServeSuccessPageJSON(devices, total)
30
+
31
+}
32
+
33
+// @Title GetDeviceDetail
34
+// @Description 根据设备ID获取设备详细信息
35
+// @Param   deviceid query int true "设备ID"
36
+// @Success 200 {object} models.Device success
37
+// @Failure 500 error
38
+// @Security token
39
+// @router /getdevicedetail [get]
40
+func (c *DeviceApiController) GetDeviceDetail() {
41
+	id, err := c.GetInt("deviceid")
42
+	if err != nil {
43
+		c.ServeDynamicFailJsonSend(err.Error())
44
+		return
45
+	}
46
+	device, err := service.NewDeviceService().GetDeviceInfo1(id)
47
+	if err != nil {
48
+		c.ServeDynamicFailJsonSend(err.Error())
49
+		return
50
+	}
51
+	c.ServeSuccessJSON(device)
52
+}
53
+
54
+func (c *DeviceApiController) DeviceBindList() {
55
+
56
+}

+ 47 - 0
controllers/admin/login_api_controllor.go View File

@@ -0,0 +1,47 @@
1
+package admin
2
+
3
+import (
4
+	"encoding/json"
5
+	"sws_xcx/controllers"
6
+	"sws_xcx/enums"
7
+	"sws_xcx/models"
8
+	"sws_xcx/service"
9
+	"sws_xcx/utils"
10
+)
11
+
12
+type LoginApiController struct {
13
+	controllers.BaseApiController
14
+}
15
+
16
+// @Title Admin Login
17
+// @Description 管理员登录
18
+// @Param	body	body 	models.AdminLoginReq	true  "用户登录参数"
19
+// @Success	200	{object}	models.SysAdmin
20
+// @Failure 500 error
21
+// @router /login [post]
22
+func (c *LoginApiController) Login() {
23
+	dataBody := models.AdminLoginReq{}
24
+	json.Unmarshal(c.Ctx.Input.RequestBody, &dataBody)
25
+	if dataBody.UserName == "" || dataBody.Password == "" {
26
+		c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAccountOrPasswordWrong)
27
+		return
28
+	}
29
+
30
+	admin, err := service.NewSysAdminService().GetByUserName(dataBody.UserName)
31
+	if err != nil {
32
+		c.ServeDynamicFailJsonSend(err.Error())
33
+		return
34
+	}
35
+	if admin.ID == 0 {
36
+		c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAdminUserNotExist)
37
+		return
38
+	}
39
+	//hash, _ := utils.PasswordHash(dataBody.Password)
40
+	if !utils.PasswordVerify(dataBody.Password, admin.Password) {
41
+		c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAccountOrPasswordWrong)
42
+		return
43
+	}
44
+	sysAdmin := models.SysAdminVO{ID: admin.ID, UserName: admin.UserName, NickName: admin.NickName, UserType: admin.UserType, DeptID: admin.DeptID}
45
+	c.SetSession("admin_info", sysAdmin)
46
+	c.ServeSuccessJSON(sysAdmin)
47
+}

+ 1 - 1
go.mod View File

@@ -9,6 +9,7 @@ require (
9 9
 	github.com/google/uuid v1.6.0
10 10
 	github.com/jinzhu/gorm v1.9.16
11 11
 	github.com/medivhzhan/weapp/v3 v3.8.1
12
+	golang.org/x/crypto v0.18.0
12 13
 )
13 14
 
14 15
 require (
@@ -35,7 +36,6 @@ require (
35 36
 	github.com/rogpeppe/go-internal v1.10.0 // indirect
36 37
 	github.com/shiena/ansicolor v0.0.0-20200904210342-c7312218db18 // indirect
37 38
 	github.com/stretchr/testify v1.8.1 // indirect
38
-	golang.org/x/crypto v0.18.0 // indirect
39 39
 	golang.org/x/net v0.20.0 // indirect
40 40
 	golang.org/x/sys v0.16.0 // indirect
41 41
 	golang.org/x/text v0.14.0 // indirect

+ 26 - 0
models/dbmodels.go View File

@@ -382,3 +382,29 @@ type CheckItemNews struct {
382 382
 func (CheckItemNews) TableName() string {
383 383
 	return "check_item_news"
384 384
 }
385
+
386
+// SysAdmin 管理员信息表
387
+type SysAdmin struct {
388
+	ID          int       `gorm:"column:id;primaryKey;autoIncrement" json:"id" description:"用户ID"`             // 用户ID
389
+	DeptID      int       `gorm:"column:dept_id" json:"dept_id" description:"部门ID"`                            // 部门ID
390
+	UserName    string    `gorm:"column:user_name;not null" json:"user_name" description:"用户账号"`               // 用户账号
391
+	NickName    string    `gorm:"column:nick_name;not null" json:"nick_name" description:"用户昵称"`               // 用户昵称
392
+	UserType    string    `gorm:"column:user_type;default:'00'" json:"user_type" description:"用户类型(00系统用户)"`   // 用户类型(00系统用户)
393
+	Email       string    `gorm:"column:email;default:''" json:"email" description:"用户邮箱"`                     // 用户邮箱
394
+	Phonenumber string    `gorm:"column:phonenumber;default:''" json:"phonenumber" description:"手机号码"`         // 手机号码
395
+	Sex         string    `gorm:"column:sex;default:'0'" json:"sex" description:"用户性别(0男 1女 2未知)"`             // 用户性别(0男 1女 2未知)
396
+	Avatar      string    `gorm:"column:avatar;default:''" json:"avatar" description:"头像地址"`                   // 头像地址
397
+	Password    string    `gorm:"column:password;default:''" json:"password" description:"密码"`                 // 密码
398
+	Status      string    `gorm:"column:status;default:'0'" json:"status" description:"帐号状态(0正常 1停用)"`         // 帐号状态(0正常 1停用)
399
+	DelFlag     string    `gorm:"column:del_flag;default:'0'" json:"del_flag" description:"删除标志(0代表存在 2代表删除)"` // 删除标志(0代表存在 2代表删除)
400
+	LoginIP     string    `gorm:"column:login_ip;default:''" json:"login_ip" description:"最后登录IP"`             // 最后登录IP
401
+	LoginDate   time.Time `gorm:"column:login_date" json:"login_date" description:"最后登录时间"`                    // 最后登录时间
402
+	Ctime       time.Time `gorm:"column:ctime" json:"ctime" description:"创建时间"`                                // 创建时间
403
+	Mtime       time.Time `gorm:"column:mtime" json:"mtime" description:"更新时间"`                                // 更新时间
404
+	Remark      string    `gorm:"column:remark" json:"remark" description:"备注"`                                // 备注
405
+}
406
+
407
+// TableName 设置表名
408
+func (SysAdmin) TableName() string {
409
+	return "sys_admin"
410
+}

+ 54 - 0
models/httpmodels.go View File

@@ -42,6 +42,13 @@ type WxXcxLoginResp struct {
42 42
 	UserOrgId int64  ` json:"user_org_id"`
43 43
 }
44 44
 
45
+type AdminLoginReq struct {
46
+	UserName string `json:"user_name"`
47
+	Password string `json:"password"`
48
+	Code     string `json:"code"`
49
+	Uuid     string `json:"uuid"`
50
+}
51
+
45 52
 type SaveUserInfoReq struct {
46 53
 	Phone string `json:"phone" description:"手机号码"`
47 54
 	Email string `json:"email" description:"邮件"`
@@ -295,3 +302,50 @@ type CheckItemNewsVO struct {
295 302
 	UpdateTime      Time   `gorm:"column:update_time;default:CURRENT_TIMESTAMP;on_update:CURRENT_TIMESTAMP" json:"update_time" description:"记录最后更新的时间,自动更新"`
296 303
 	CreateTime      Time   `gorm:"column:create_time;default:CURRENT_TIMESTAMP" json:"create_time" description:"创建时间"`
297 304
 }
305
+
306
+type SysAdminVO struct {
307
+	ID       int    `gorm:"column:id;primaryKey;autoIncrement" json:"id" description:"用户ID"`           // 用户ID
308
+	DeptID   int    `gorm:"column:dept_id" json:"dept_id" description:"部门ID"`                          // 部门ID
309
+	UserName string `gorm:"column:user_name;not null" json:"user_name" description:"用户账号"`             // 用户账号
310
+	NickName string `gorm:"column:nick_name;not null" json:"nick_name" description:"用户昵称"`             // 用户昵称
311
+	UserType string `gorm:"column:user_type;default:'00'" json:"user_type" description:"用户类型(00系统用户)"` // 用户类型(00系统用户)
312
+}
313
+
314
+//设备表
315
+type DeviceVO struct {
316
+	Id         uint64 `json:"id" gorm:"type:bigint(20) unsigned auto_increment; NOT NULL; primary_key; COMMENT:'设备ID'" description:"设备ID"`
317
+	Name       string `json:"name" gorm:"type:varchar(255); COMMENT:'设备名称'" description:"设备名称"`
318
+	Serialno   string `json:"serialno" gorm:"type:varchar(64); COMMENT:'设备编号'" description:"设备编号"`
319
+	DeviceName string `json:"device_name" gorm:"type:varchar(255); COMMENT:'设备名称'" description:"设备名称"`
320
+	DeviceType string `json:"device_type" gorm:"type:varchar(11); COMMENT:'设备类型'" description:"设备类型"`
321
+	InformType int    `json:"inform_type" gorm:"type:int(1); COMMENT:'通知类型:0跳转小程序、1跳转网页 、默认跳转小程序'" description:"通知类型:0跳转小程序、1跳转网页 、默认跳转小程序"`
322
+	Mac        string `json:"mac" gorm:"type:varchar(255)"`
323
+	Mcu        string `json:"mcu" gorm:"type:varchar(255)"`
324
+
325
+	Number      int    `json:"number" gorm:"type:int(10); COMMENT:'序号'" description:"序号"`
326
+	QrCode      string `json:"qr_code" gorm:"type:varchar(255)"`
327
+	EmqPassword string `json:"emq_password" gorm:"type:varchar(255); COMMENT:'emq密码'" description:"emq密码"`
328
+	Status      int    `json:"status" gorm:"type:int(2); DEFAULT:'0'; COMMENT:'状态(0:未分配 1:已分配 2:包装中 3:待出厂 6:废弃 99:已出厂 100:销售中 101:已售出)'" description:"状态(0:未分配 1:已分配 2:包装中 3:待出厂 6:废弃 99:已出厂 100:销售中 101:已售出)"`
329
+	Ver         string `json:"ver" gorm:"type:varchar(255); COMMENT:'软件版本'" description:"软件版本"`
330
+	McuType     string `json:"mcu_type" gorm:"type:varchar(32); COMMENT:'MCU芯片类型'" description:"MCU芯片类型"`
331
+	SensorMode  string `json:"sensor_mode" gorm:"type:varchar(32); COMMENT:'传感放大倍数'" description:"传感放大倍数"`
332
+	Language    string `json:"language" gorm:"type:varchar(32); COMMENT:'语言'" description:"语言"`
333
+	PaperCheck  int    `json:"paper_check" gorm:"type:int(11); COMMENT:'试纸检查状态'" description:"试纸检查状态"`
334
+	WifiVer     string `json:"wifi_ver" gorm:"type:varchar(32); COMMENT:'WIFI版本'" description:"WIFI版本"`
335
+	Ctime       Time   `json:"ctime" gorm:"type:datetime; DEFAULT: CURRENT_TIMESTAMP; COMMENT:'创建时间'" description:"创建时间"`
336
+	Mtime       Time   `json:"mtime" gorm:"type:datetime; DEFAULT: CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP; COMMENT:'更新时间 '" description:"更新时间 "`
337
+	DeleteFlag  int    `json:"delete_flag" gorm:"type:int(11); DEFAULT:'0'; COMMENT:'删除标志'" description:"删除标志"`
338
+	OrgID       int64  `json:"org_id" gorm:"type:bigint(20); NOT NULL; default:0; COMMENT:'所属机构'" description:"所属机构"`
339
+
340
+	BatchNumber    string    `json:"batch_num" gorm:"column:batch_num; COMMENT:'批号'" description:"批号"`
341
+	ProductionDate string    `json:"production_date" gorm:"column:production_date; COMMENT:'生产日期'" description:"生产日期"`
342
+	ExpireDate     time.Time `gorm:"column:expire_date;type:date;not null" json:"expire_date" description:"到期日期"`
343
+	RegisterNum    string    `gorm:"column:register_num;type:varchar(128);not null" json:"register_num" description:"医疗器械注册证编号"`
344
+
345
+	VendorName          string `gorm:"column:vendor_name;type:varchar(128)" json:"vendor_name" description:"公司名称"`
346
+	Address             string `gorm:"column:address;type:varchar(511)" json:"address" description:"地址"`
347
+	Contact             string `gorm:"column:contact;type:varchar(128)" json:"contact" description:"联系方式"`
348
+	ProductionLicense   string `gorm:"column:production_license;type:varchar(128)" json:"production_license" description:"生产许可证编号"`
349
+	ProductionCorporate string `gorm:"column:production_corporate;type:varchar(128)" json:"production_corporate" description:"生产企业"`
350
+	ProductionAddress   string `gorm:"column:production_address;type:varchar(100)" json:"production_address" description:"生产地址"`
351
+}

+ 7 - 0
routers/router.go View File

@@ -7,6 +7,7 @@ package routers
7 7
 
8 8
 import (
9 9
 	"sws_xcx/controllers"
10
+	"sws_xcx/controllers/admin"
10 11
 
11 12
 	"github.com/astaxie/beego"
12 13
 	"github.com/astaxie/beego/plugins/cors"
@@ -47,7 +48,13 @@ func init() {
47 48
 				beego.NSInclude(
48 49
 					&controllers.ArticleApiController{},
49 50
 				)),
51
+			beego.NSNamespace("/api/admin",
52
+				beego.NSInclude(
53
+					&admin.LoginApiController{},
54
+					&admin.DeviceApiController{},
55
+				)),
50 56
 		)
51 57
 	beego.AddNamespace(ns)
52 58
 	controllers.ApiControllersRegisterRouters()
59
+	admin.ApiControllersRegisterRouters()
53 60
 }

+ 43 - 0
service/deviceservice.go View File

@@ -19,6 +19,49 @@ func NewDeviceService() *DeviceService {
19 19
 	}
20 20
 }
21 21
 
22
+func (s *DeviceService) GetDeviceList(pageNum int, pageSize int, deviceType string) (devices []*models.Device, total int, err error) {
23
+
24
+	offset := (pageNum - 1) * pageSize
25
+	db := s.rdb.Model(&models.Device{}).Where("1=1")
26
+
27
+	if deviceType != "" {
28
+		db = db.Where("device_type = ?", deviceType)
29
+	}
30
+	err = db.Count(&total).Offset(offset).Limit(pageSize).Find(&devices).Error
31
+	return
32
+}
33
+
34
+func (s *DeviceService) GetDeviceList1(pageNum int, pageSize int, deviceType string) (devices []*models.DeviceVO, total int, err error) {
35
+	offset := (pageNum - 1) * pageSize
36
+	sql := "select a.*,b.batch_num ,b.production_date ,b.expire_date ,b.register_num ,v.name  as vendor_name,v.address ,v.contact ,v.production_license ,v.production_corporate ,v.production_address  from device as a inner join device_batch as b on a.batch_number =b.id inner join  vendor v on b.vendor_id =v.id where 1=1"
37
+	dbc := s.rdb.Model(&models.Device{})
38
+	if deviceType != "" {
39
+		dbc = dbc.Where("device_type = ?", deviceType)
40
+		sql = sql + " and a.device_type = ?"
41
+	}
42
+	err = dbc.Count(&total).Error
43
+	if err != nil {
44
+		return
45
+	}
46
+	db := s.rdb.Raw(sql)
47
+	if deviceType != "" {
48
+		db = s.rdb.Raw(sql, deviceType)
49
+	}
50
+	err = db.Offset(offset).Limit(pageSize).Find(&devices).Error
51
+	return
52
+}
53
+
54
+func (s *DeviceService) GetDeviceInfo1(id int) (models.DeviceVO, error) {
55
+	var device models.DeviceVO
56
+	sql := "select a.*,b.batch_num ,b.production_date ,b.expire_date ,b.register_num ,v.name  as vendor_name,v.address ,v.contact ,v.production_license ,v.production_corporate ,v.production_address  from device as a inner join device_batch as b on a.batch_number =b.id inner join  vendor v on b.vendor_id =v.id where a.id=? "
57
+
58
+	err := s.rdb.Raw(sql, id).First(&device).Error
59
+	if err == gorm.ErrRecordNotFound {
60
+		err = nil
61
+	}
62
+	return device, err
63
+}
64
+
22 65
 func (s *DeviceService) GetDeviceInfo(id int) (models.Device, error) {
23 66
 	var device models.Device
24 67
 	err := s.rdb.Model(&device).First(&device, id).Error

+ 29 - 0
service/sysadminservice.go View File

@@ -0,0 +1,29 @@
1
+package service
2
+
3
+import (
4
+	"sws_xcx/models"
5
+
6
+	"github.com/jinzhu/gorm"
7
+)
8
+
9
+type SysAdminService struct {
10
+	rdb *gorm.DB
11
+	wdb *gorm.DB
12
+}
13
+
14
+func NewSysAdminService() *SysAdminService {
15
+	admin := &models.SysAdmin{}
16
+	return &SysAdminService{
17
+		rdb: readDb.Model(admin),
18
+		wdb: writeDb.Model(admin),
19
+	}
20
+}
21
+
22
+func (s *SysAdminService) GetByUserName(userName string) (*models.SysAdmin, error) {
23
+	var admin models.SysAdmin
24
+	err := s.rdb.Where("user_name = ?", userName).First(&admin).Error
25
+	if err == gorm.ErrRecordNotFound {
26
+		return &admin, nil
27
+	}
28
+	return &admin, err
29
+}

+ 3 - 3
service/userservice.go View File

@@ -20,7 +20,7 @@ func NewXcxUserService() *XcxUserService {
20 20
 func (s *XcxUserService) GetUser(id uint64) (*models.XcxUser, error) {
21 21
 
22 22
 	user := &models.XcxUser{}
23
-	db := readDb.Where("id=?", id).First(user)
23
+	db := s.rdb.Where("id=?", id).First(user)
24 24
 
25 25
 	return user, db.Error
26 26
 
@@ -29,7 +29,7 @@ func (s *XcxUserService) GetUser(id uint64) (*models.XcxUser, error) {
29 29
 func (s *XcxUserService) GetOrCreate(openId string, unionId string) (*models.XcxUser, error) {
30 30
 
31 31
 	user := &models.XcxUser{OpenId: openId, UnionId: unionId}
32
-	db := writeDb.Where("open_id = ?", openId)
32
+	db := s.wdb.Where("open_id = ?", openId)
33 33
 	if unionId != "" {
34 34
 		db = db.Or("union_id = ?", unionId)
35 35
 	}
@@ -42,7 +42,7 @@ func (s *XcxUserService) GetOrCreate(openId string, unionId string) (*models.Xcx
42 42
 func (s *XcxUserService) GetByOpenId(openId string) (*models.XcxUser, error) {
43 43
 
44 44
 	user := &models.XcxUser{}
45
-	db := writeDb.Where("open_id = ?", openId)
45
+	db := s.wdb.Where("open_id = ?", openId)
46 46
 	db.First(user)
47 47
 	return user, db.Error
48 48
 

+ 210 - 0
swagger/swagger.json View File

@@ -11,6 +11,119 @@
11 11
     },
12 12
     "basePath": "/xcx",
13 13
     "paths": {
14
+        "/api/admin/getdevicedetail": {
15
+            "get": {
16
+                "tags": [
17
+                    "api/admin"
18
+                ],
19
+                "description": "根据设备ID获取设备详细信息\n\u003cbr\u003e",
20
+                "operationId": "DeviceApiController.GetDeviceDetail",
21
+                "parameters": [
22
+                    {
23
+                        "in": "query",
24
+                        "name": "deviceid",
25
+                        "description": "设备ID",
26
+                        "required": true,
27
+                        "type": "integer",
28
+                        "format": "int64"
29
+                    }
30
+                ],
31
+                "responses": {
32
+                    "200": {
33
+                        "description": "success",
34
+                        "schema": {
35
+                            "$ref": "#/definitions/models.Device"
36
+                        }
37
+                    },
38
+                    "500": {
39
+                        "description": "error"
40
+                    }
41
+                },
42
+                "security": [
43
+                    {
44
+                        "token": []
45
+                    }
46
+                ]
47
+            }
48
+        },
49
+        "/api/admin/getdevicelist": {
50
+            "get": {
51
+                "tags": [
52
+                    "api/admin"
53
+                ],
54
+                "description": "获取设备列表\n\u003cbr\u003e",
55
+                "operationId": "DeviceApiController.GetDeviceList",
56
+                "parameters": [
57
+                    {
58
+                        "in": "query",
59
+                        "name": "pageNum",
60
+                        "description": "当前页(从1开始)",
61
+                        "required": true,
62
+                        "type": "integer",
63
+                        "format": "int64"
64
+                    },
65
+                    {
66
+                        "in": "query",
67
+                        "name": "pageSize",
68
+                        "description": "分页大小",
69
+                        "required": true,
70
+                        "type": "integer",
71
+                        "format": "int64"
72
+                    },
73
+                    {
74
+                        "in": "query",
75
+                        "name": "deviceType",
76
+                        "description": "设备类型",
77
+                        "type": "string"
78
+                    }
79
+                ],
80
+                "responses": {
81
+                    "200": {
82
+                        "description": "success",
83
+                        "schema": {
84
+                            "type": "array",
85
+                            "items": {
86
+                                "$ref": "#/definitions/models.Device"
87
+                            }
88
+                        }
89
+                    },
90
+                    "500": {
91
+                        "description": "error"
92
+                    }
93
+                }
94
+            }
95
+        },
96
+        "/api/admin/login": {
97
+            "post": {
98
+                "tags": [
99
+                    "api/admin"
100
+                ],
101
+                "description": "管理员登录\n\u003cbr\u003e",
102
+                "operationId": "LoginApiController.Admin Login",
103
+                "parameters": [
104
+                    {
105
+                        "in": "body",
106
+                        "name": "body",
107
+                        "description": "用户登录参数",
108
+                        "required": true,
109
+                        "schema": {
110
+                            "$ref": "#/definitions/models.AdminLoginReq"
111
+                        }
112
+                    }
113
+                ],
114
+                "responses": {
115
+                    "200": {
116
+                        "description": "",
117
+                        "schema": {
118
+                            "$ref": "#/definitions/models.SysAdmin"
119
+                        }
120
+                    },
121
+                    "500": {
122
+                        "description": "error"
123
+                    }
124
+                }
125
+            }
126
+        },
14 127
         "/api/article/getarticlebyid": {
15 128
             "get": {
16 129
                 "tags": [
@@ -811,6 +924,24 @@
811 924
         }
812 925
     },
813 926
     "definitions": {
927
+        "models.AdminLoginReq": {
928
+            "title": "AdminLoginReq",
929
+            "type": "object",
930
+            "properties": {
931
+                "code": {
932
+                    "type": "string"
933
+                },
934
+                "password": {
935
+                    "type": "string"
936
+                },
937
+                "user_name": {
938
+                    "type": "string"
939
+                },
940
+                "uuid": {
941
+                    "type": "string"
942
+                }
943
+            }
944
+        },
814 945
         "models.AppCheckRecordItemDetailsVO": {
815 946
             "title": "AppCheckRecordItemDetailsVO",
816 947
             "type": "object",
@@ -1668,6 +1799,85 @@
1668 1799
                 }
1669 1800
             }
1670 1801
         },
1802
+        "models.SysAdmin": {
1803
+            "title": "SysAdmin",
1804
+            "type": "object",
1805
+            "properties": {
1806
+                "avatar": {
1807
+                    "description": "头像地址",
1808
+                    "type": "string"
1809
+                },
1810
+                "ctime": {
1811
+                    "description": "创建时间",
1812
+                    "type": "string",
1813
+                    "format": "datetime"
1814
+                },
1815
+                "del_flag": {
1816
+                    "description": "删除标志(0代表存在 2代表删除)",
1817
+                    "type": "string"
1818
+                },
1819
+                "dept_id": {
1820
+                    "description": "部门ID",
1821
+                    "type": "integer",
1822
+                    "format": "int64"
1823
+                },
1824
+                "email": {
1825
+                    "description": "用户邮箱",
1826
+                    "type": "string"
1827
+                },
1828
+                "id": {
1829
+                    "description": "用户ID",
1830
+                    "type": "integer",
1831
+                    "format": "int64"
1832
+                },
1833
+                "login_date": {
1834
+                    "description": "最后登录时间",
1835
+                    "type": "string",
1836
+                    "format": "datetime"
1837
+                },
1838
+                "login_ip": {
1839
+                    "description": "最后登录IP",
1840
+                    "type": "string"
1841
+                },
1842
+                "mtime": {
1843
+                    "description": "更新时间",
1844
+                    "type": "string",
1845
+                    "format": "datetime"
1846
+                },
1847
+                "nick_name": {
1848
+                    "description": "用户昵称",
1849
+                    "type": "string"
1850
+                },
1851
+                "password": {
1852
+                    "description": "密码",
1853
+                    "type": "string"
1854
+                },
1855
+                "phonenumber": {
1856
+                    "description": "手机号码",
1857
+                    "type": "string"
1858
+                },
1859
+                "remark": {
1860
+                    "description": "备注",
1861
+                    "type": "string"
1862
+                },
1863
+                "sex": {
1864
+                    "description": "用户性别(0男 1女 2未知)",
1865
+                    "type": "string"
1866
+                },
1867
+                "status": {
1868
+                    "description": "帐号状态(0正常 1停用)",
1869
+                    "type": "string"
1870
+                },
1871
+                "user_name": {
1872
+                    "description": "用户账号",
1873
+                    "type": "string"
1874
+                },
1875
+                "user_type": {
1876
+                    "description": "用户类型(00系统用户)",
1877
+                    "type": "string"
1878
+                }
1879
+            }
1880
+        },
1671 1881
         "models.Time": {
1672 1882
             "title": "Time",
1673 1883
             "type": "object"

+ 152 - 0
swagger/swagger.yml View File

@@ -8,6 +8,86 @@ info:
8 8
     name: 领透科技
9 9
 basePath: /xcx
10 10
 paths:
11
+  /api/admin/getdevicedetail:
12
+    get:
13
+      tags:
14
+      - api/admin
15
+      description: |-
16
+        根据设备ID获取设备详细信息
17
+        <br>
18
+      operationId: DeviceApiController.GetDeviceDetail
19
+      parameters:
20
+      - in: query
21
+        name: deviceid
22
+        description: 设备ID
23
+        required: true
24
+        type: integer
25
+        format: int64
26
+      responses:
27
+        "200":
28
+          description: success
29
+          schema:
30
+            $ref: '#/definitions/models.Device'
31
+        "500":
32
+          description: error
33
+      security:
34
+      - token: []
35
+  /api/admin/getdevicelist:
36
+    get:
37
+      tags:
38
+      - api/admin
39
+      description: |-
40
+        获取设备列表
41
+        <br>
42
+      operationId: DeviceApiController.GetDeviceList
43
+      parameters:
44
+      - in: query
45
+        name: pageNum
46
+        description: 当前页(从1开始)
47
+        required: true
48
+        type: integer
49
+        format: int64
50
+      - in: query
51
+        name: pageSize
52
+        description: 分页大小
53
+        required: true
54
+        type: integer
55
+        format: int64
56
+      - in: query
57
+        name: deviceType
58
+        description: 设备类型
59
+        type: string
60
+      responses:
61
+        "200":
62
+          description: success
63
+          schema:
64
+            type: array
65
+            items:
66
+              $ref: '#/definitions/models.Device'
67
+        "500":
68
+          description: error
69
+  /api/admin/login:
70
+    post:
71
+      tags:
72
+      - api/admin
73
+      description: |-
74
+        管理员登录
75
+        <br>
76
+      operationId: LoginApiController.Admin Login
77
+      parameters:
78
+      - in: body
79
+        name: body
80
+        description: 用户登录参数
81
+        required: true
82
+        schema:
83
+          $ref: '#/definitions/models.AdminLoginReq'
84
+      responses:
85
+        "200":
86
+          description: ""
87
+          schema:
88
+            $ref: '#/definitions/models.SysAdmin'
89
+        "500":
90
+          description: error
11 91
   /api/article/getarticlebyid:
12 92
     get:
13 93
       tags:
@@ -568,6 +648,18 @@ paths:
568 648
       security:
569 649
       - token: []
570 650
 definitions:
651
+  models.AdminLoginReq:
652
+    title: AdminLoginReq
653
+    type: object
654
+    properties:
655
+      code:
656
+        type: string
657
+      password:
658
+        type: string
659
+      user_name:
660
+        type: string
661
+      uuid:
662
+        type: string
571 663
   models.AppCheckRecordItemDetailsVO:
572 664
     title: AppCheckRecordItemDetailsVO
573 665
     type: object
@@ -1220,6 +1312,66 @@ definitions:
1220 1312
         description: 类型'0系统1医生2机构
1221 1313
         type: integer
1222 1314
         format: int32
1315
+  models.SysAdmin:
1316
+    title: SysAdmin
1317
+    type: object
1318
+    properties:
1319
+      avatar:
1320
+        description: 头像地址
1321
+        type: string
1322
+      ctime:
1323
+        description: 创建时间
1324
+        type: string
1325
+        format: datetime
1326
+      del_flag:
1327
+        description: 删除标志(0代表存在 2代表删除)
1328
+        type: string
1329
+      dept_id:
1330
+        description: 部门ID
1331
+        type: integer
1332
+        format: int64
1333
+      email:
1334
+        description: 用户邮箱
1335
+        type: string
1336
+      id:
1337
+        description: 用户ID
1338
+        type: integer
1339
+        format: int64
1340
+      login_date:
1341
+        description: 最后登录时间
1342
+        type: string
1343
+        format: datetime
1344
+      login_ip:
1345
+        description: 最后登录IP
1346
+        type: string
1347
+      mtime:
1348
+        description: 更新时间
1349
+        type: string
1350
+        format: datetime
1351
+      nick_name:
1352
+        description: 用户昵称
1353
+        type: string
1354
+      password:
1355
+        description: 密码
1356
+        type: string
1357
+      phonenumber:
1358
+        description: 手机号码
1359
+        type: string
1360
+      remark:
1361
+        description: 备注
1362
+        type: string
1363
+      sex:
1364
+        description: 用户性别(0男 1女 2未知)
1365
+        type: string
1366
+      status:
1367
+        description: 帐号状态(0正常 1停用)
1368
+        type: string
1369
+      user_name:
1370
+        description: 用户账号
1371
+        type: string
1372
+      user_type:
1373
+        description: 用户类型(00系统用户)
1374
+        type: string
1223 1375
   models.Time:
1224 1376
     title: Time
1225 1377
     type: object

+ 18 - 0
tests/default_test.go View File

@@ -546,3 +546,21 @@ func findItem(items []*models.CheckItem, itemNumber int) *models.CheckItem {
546 546
 	}
547 547
 	return nil
548 548
 }
549
+
550
+func TestHashPassword(t *testing.T) {
551
+	password := "sAGi7="
552
+	hash, err := utils.PasswordHash(password)
553
+	if err != nil {
554
+		t.Error(err)
555
+		t.Fail()
556
+
557
+	}
558
+	t.Log(hash)
559
+}
560
+
561
+func TestCompareHashPassword(t *testing.T) {
562
+	hash := "$2a$10$5EqckbPqLlsDlGmzCG9AHOoJheFdKzazKpIpInoYNVe9llwM4Etqi"
563
+	password := "sAGi7="
564
+	ok := utils.PasswordVerify(password, hash)
565
+	t.Log(ok)
566
+}

+ 14 - 0
tests/gendb_test.go View File

@@ -137,3 +137,17 @@ func TestCheckRecordService_GetCheckRecordList(t *testing.T) {
137 137
 	t.Logf("%+v", vos)
138 138
 
139 139
 }
140
+
141
+func TestGetDeviceList1(t *testing.T) {
142
+	pageNum := 1
143
+	pageSize := 30
144
+	deviceType := "1"
145
+	devices, total, err := service.NewDeviceService().GetDeviceList1(pageNum, pageSize, deviceType)
146
+	if err != nil {
147
+		t.Error(err)
148
+		return
149
+	}
150
+	ds, _ := json.Marshal(devices)
151
+	t.Logf("devices:%s", ds)
152
+	t.Logf("total:%v", total)
153
+}

+ 12 - 0
utils/stringtool.go View File

@@ -13,6 +13,7 @@ import (
13 13
 	"time"
14 14
 
15 15
 	"github.com/astaxie/beego"
16
+	"golang.org/x/crypto/bcrypt"
16 17
 )
17 18
 
18 19
 // 将字符串加密成 md5
@@ -113,3 +114,14 @@ func _aesDecrypt(crypted, key []byte) ([]byte, error) {
113 114
 	origData = _PKCS5UnPadding(origData)
114 115
 	return origData, nil
115 116
 }
117
+
118
+func PasswordHash(password string) (string, error) {
119
+	bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
120
+	return string(bytes), err
121
+}
122
+
123
+// PasswordVerify php的函数password_verify
124
+func PasswordVerify(password, hash string) bool {
125
+	err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
126
+	return err == nil
127
+}