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