12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using SmartCoalApplication.Core.DbOpreate.DbModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SmartCoalApplication.Core.DbOpreate.DbIDal
- {
- public interface Imic_camerasettings
- {
- #region 基础接口
- /// <summary>
- /// 添加信息
- /// </summary>
- /// <param name="model">实体</param>
- /// <returns></returns>
- bool Add(mic_camerasettings model);
- /// <summary>
- /// 删除信息
- /// </summary>
- /// <param name="id">主键</param>
- /// <returns></returns>
- bool Del(int id);
- /// <summary>
- /// 获得信息
- /// </summary>
- /// <param name="id">主键</param>
- /// <returns></returns>
- mic_camerasettings FindDefault(int id);
- /// <summary>
- /// 更新信息
- /// <param name="model">实体</param>
- /// </summary>
- /// <returns></returns>
- bool Update(mic_camerasettings model);
- /// <summary>
- /// 获得所有信息
- /// </summary>
- /// <returns></returns>
- List<mic_camerasettings> FindAll();
- #endregion 基础接口
- }
- }
|