软测单独项目
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
981 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FangYar.IDAL.TBL
{
/// <summary>
/// 消防要事日记签名
/// </summary>
public interface DiaySignIDAL
{
/// <summary>
/// 保存信息
/// </summary>
/// <param name="model">保存数据信息对象</param>
/// <returns></returns>
bool SaveDB(Model.TBL.TBL_DIAY_SIGN model);
/// <summary>
/// 查询信息集合
/// </summary>
/// <param name="dto">查询数据信息模型</param>
/// <returns></returns>
List<Model.TBL.TBL_DIAY_SIGN> Queyr(Model.TBL.TBL_DIAY_SIGN dto);
/// <summary>
/// 查询单个数据模型
/// </summary>
/// <param name="dto">查询数据信息模型</param>
/// <returns></returns>
Model.TBL.TBL_DIAY_SIGN QueyrObj(Model.TBL.TBL_DIAY_SIGN dto);
}
}