using ProjectBase.Data.BaseDAL; using ProjectBase.Data.Pager; using SIMDP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SIMDP.DAL.IDALSQL { public interface IDalDataGroup: IBaseDAL { /// /// 获取数据组管理 /// /// plc id /// plc名称 /// //List GetAllDataGroup(); /// /// 以分页的方式获取数据组管理 /// /// /// /// 分页信息 /// //List GetDataGroupWithPager(long id, string name, PagerInfo info); /// /// 插入一条数据组管理信息 /// /// /// //bool InsetDataGroup(MoDataGroup obj); /// /// 删除记录 /// /// /// //bool DeleteWithId(long id); /// /// 更新信息 /// /// /// /// //bool UpdateWithId(long id, MoDataGroup newoObj); } }