mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-29 15:30:03 +08:00 
			
		
		
		
	* fix: GetUserReqApplicationList error when there is a disbanded group chat
* fix: error when querying some information about disbanded group
* fix: GetUserReqApplicationList dismissed group error
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* fix: the original message referenced by the pull message processing is withdrawn
* merge
* cicd: robot automated Change
* sdkws.MsgData
* user
* interface{} -> any
* user
* third
* group
* group
* group
* group
* group
* group
* conversation
* standalone mysql db model
* tx
* s3
* group
* mongo
* group
* group
* group
* group
* group
* group
* refactor: add openim mysql to mongo refactor
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
* refactor: add openim mysql to mongo refactor
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
* remove mysql
* remove mysql
* friend
* friend
* friend
* friend
* friend
* friend
* group
* convert
* index
* index
* all
* all
* mysql2mongo
* data conversion
* up35
* up35
* feat: add format set
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
* fix: fix scripts
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
* merge main
* merge main
* Update init-config.sh
* fix: user args check
---------
Signed-off-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
Co-authored-by: withchao <withchao@users.noreply.github.com>
Co-authored-by: Xinwei Xiong(cubxxw) <3293172751nss@gmail.com>
Co-authored-by: Xinwei Xiong <3293172751@qq.com>
		
	
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package relation
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| type Log struct {
 | |
| 	LogID      string    `gorm:"column:log_id;primary_key;type:char(64)"`
 | |
| 	Platform   string    `gorm:"column:platform;type:varchar(32)"`
 | |
| 	UserID     string    `gorm:"column:user_id;type:char(64)"`
 | |
| 	CreateTime time.Time `gorm:"index:,sort:desc"`
 | |
| 	Url        string    `gorm:"column:url;type varchar(255)"`
 | |
| 	FileName   string    `gorm:"column:filename;type varchar(255)"`
 | |
| 	SystemType string    `gorm:"column:system_type;type varchar(255)"`
 | |
| 	Version    string    `gorm:"column:version;type varchar(255)"`
 | |
| 	Ex         string    `gorm:"column:ex;type varchar(255)"`
 | |
| }
 | |
| 
 | |
| func (Log) TableName() string {
 | |
| 	return "logs"
 | |
| }
 | |
| 
 | |
| type LogInterface interface {
 | |
| 	Create(ctx context.Context, log []*Log) error
 | |
| 	Search(ctx context.Context, keyword string, start time.Time, end time.Time, pageNumber int32, showNumber int32) (uint32, []*Log, error)
 | |
| 	Delete(ctx context.Context, logID []string, userID string) error
 | |
| 	Get(ctx context.Context, logIDs []string, userID string) ([]*Log, error)
 | |
| }
 |