20 lines
502 B
Plaintext
20 lines
502 B
Plaintext
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WinformDevFramework.IRepository.System;
|
|
using WinformDevFramework.IRepository;
|
|
using WinformDevFramework.Models;
|
|
|
|
namespace ${NameSpace}.Repository
|
|
{
|
|
public class ${tableName}Repository : BaseRepository<${tableName}>, I${tableName}Repository
|
|
{
|
|
public ${tableName}Repository(ISqlSugarClient sqlSugar) : base(sqlSugar)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |