using PaintDotNet.Base; using PaintDotNet.DbOpreate.DbModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PaintDotNet.DbOpreate.DbIDal { public interface Imic_project_info_item { #region 基础接口 /// /// 添加信息 /// /// 实体 /// bool Add(mic_project_info_item model); /// /// 删除信息 /// /// 主键 /// bool Del(int id); /// /// 获得信息 /// /// 主键 /// mic_project_info_item FindDefault(int id); /// /// 更新信息 /// 实体 /// /// bool Update(mic_project_info_item model); /// /// 获得所有信息 /// /// List FindAll(); #endregion 基础接口 List FindAllByInfoId(int infoId); } }