You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							425 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							425 B
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace App\Admin\Repositories;
							 | 
						|
								use App\Models\MiniProgramTemplate as Model;
							 | 
						|
								use Dcat\Admin\Repositories\EloquentRepository;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * 小程序模板
							 | 
						|
								 * Class MiniProgramDraft
							 | 
						|
								 * @package App\Admin\Repositories
							 | 
						|
								 */
							 | 
						|
								class MiniProgramTemplateList extends EloquentRepository
							 | 
						|
								{
							 | 
						|
									protected $eloquentClass = Model::class;
							 | 
						|
								
							 | 
						|
									public function __construct()
							 | 
						|
									{
							 | 
						|
										parent::__construct();
							 | 
						|
										$this->setKeyName('template_id');
							 | 
						|
									}
							 | 
						|
								}
							 |