Files
bj_power/bj_power_mes/internal/db/config.go
T

20 lines
355 B
Go

/*
* Copyright (c) 2025 Beijing Hardman Automation Equipment Co., LTD. All rights reserved.
*
* Project: adapter
* File: config.go
* Last: 2025-05-16 16:15:18
* Author: wangcheng@bj-hardman.com
*/
package db
type DatabaseConf struct {
Host string
Port int
User string
Password string
Dbname string
Debug bool
}