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.
35 lines
957 B
35 lines
957 B
9 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace FangYar.IDAL.ZHSQ
|
||
|
{
|
||
|
public interface GroupUserIDAL
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 根据ID获取model
|
||
|
/// </summary>
|
||
|
FangYar.Model.ZHSQ.ZHSQ_GROUP_USER_Model GetModelByID(string ID);
|
||
|
/// <summary>
|
||
|
/// 添加
|
||
|
/// </summary>
|
||
|
bool Add(FangYar.Model.ZHSQ.ZHSQ_GROUP_USER_Model model);
|
||
|
/// <summary>
|
||
|
/// 删除
|
||
|
/// </summary>
|
||
|
bool Delete(string IDList);
|
||
|
/// <summary>
|
||
|
/// 编辑
|
||
|
/// </summary>
|
||
|
bool Edit(FangYar.Model.ZHSQ.ZHSQ_GROUP_USER_Model model);
|
||
|
|
||
|
/// <summary>
|
||
|
/// 分页
|
||
|
/// </summary>
|
||
|
void QueryProc(int PageIndex, int PageSize, string strwhere, string order);
|
||
|
|
||
|
List<FangYar.Model.ZHSQ.ZHSQ_GROUP_USER_Model> QueryList(int PageIndex, int PageSize, string strwhere, string order);
|
||
|
}
|
||
|
}
|