mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			291 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			291 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package persistence
 | 
						|
 | 
						|
import (
 | 
						|
	"mayfly-go/internal/msg/domain/entity"
 | 
						|
	"mayfly-go/internal/msg/domain/repository"
 | 
						|
	"mayfly-go/pkg/base"
 | 
						|
)
 | 
						|
 | 
						|
type msgTmplBizRepoImpl struct {
 | 
						|
	base.RepoImpl[*entity.MsgTmplBiz]
 | 
						|
}
 | 
						|
 | 
						|
func newMsgTmplBizRepo() repository.MsgTmplBiz {
 | 
						|
	return &msgTmplBizRepoImpl{}
 | 
						|
}
 |