You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
470 B
C#

5 days ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace Sln.Wcs.Common
{
public abstract class SqlFunctionFactory<T> where T : class
{
public abstract void insertFunction(T _entity);
public abstract void deleteFunction(T _entity);
public abstract List<T> searchFunction(T _entity);
public abstract void updateFunction(T _entity);
}
}