2024-06-25 09:38:21 +08:00
|
|
|
package proto
|
|
|
|
|
|
2024-06-28 10:10:23 +08:00
|
|
|
import "gorm.io/gorm"
|
|
|
|
|
|
2024-06-25 09:38:21 +08:00
|
|
|
const (
|
2024-06-25 10:20:48 +08:00
|
|
|
MYSQL_USER = "video_t2"
|
|
|
|
|
MYSQL_DB = "video_t2"
|
|
|
|
|
MYSQL_PASSWORD = "2t2SKHmWEYj2xFKF"
|
|
|
|
|
MYSQL_PORT = "3306"
|
|
|
|
|
MYSQL_HOST = "127.0.0.1"
|
2024-06-25 10:28:22 +08:00
|
|
|
MYSQL_DSN = MYSQL_USER + ":" + MYSQL_PASSWORD + "@tcp(" + MYSQL_HOST + ":" + MYSQL_PORT + ")/" + MYSQL_DB + "?charset=utf8mb4&parseTime=True&loc=Local"
|
2024-06-25 09:38:21 +08:00
|
|
|
|
|
|
|
|
REDIS_ADDR = "127.0.0.1:6379"
|
|
|
|
|
REDIS_PASSWORD = "lj502138"
|
|
|
|
|
REIDS_DB = 2
|
|
|
|
|
|
|
|
|
|
TOKEN_SECRET = "mfjurnc_32ndj9dfhj"
|
2024-07-05 11:38:59 +08:00
|
|
|
|
|
|
|
|
// 以下是持续集成、部署的配置
|
|
|
|
|
CID_BASE_DIR = "/home/lijun/cid/"
|
2024-06-25 09:38:21 +08:00
|
|
|
)
|
2024-06-28 10:10:23 +08:00
|
|
|
|
2024-08-02 15:02:56 +08:00
|
|
|
const (
|
|
|
|
|
// 以下是消息类型
|
|
|
|
|
MSG_TYPE_SIMPLE = 1 // 单聊
|
|
|
|
|
MSG_TYPE_GROUP = 2 // 群聊
|
|
|
|
|
MSG_TYPE_SYSTEM = 3 // 系统消息
|
|
|
|
|
MSG_TYPE_FRIEND = 4 // 好友请求
|
|
|
|
|
|
|
|
|
|
// 以下是消息状态
|
|
|
|
|
MSG_STATUS_READ = 1 // 已读
|
|
|
|
|
MSG_STATUS_UNREAD = 0 // 未读
|
|
|
|
|
)
|
|
|
|
|
|
2024-06-28 10:38:55 +08:00
|
|
|
type User struct {
|
2024-06-28 10:10:23 +08:00
|
|
|
gorm.Model
|
|
|
|
|
Name string `gorm:"column:name"`
|
|
|
|
|
Age int `gorm:"column:age"`
|
|
|
|
|
Email string `gorm:"column:email"`
|
|
|
|
|
Gender string `gorm:"column:gender"`
|
|
|
|
|
}
|