using System;
using System.Collections.Generic;
using System.Text;
using IBatisNet.DataMapper;
using Com.Chinasofti.PPAS.Model;
namespace Com.Chinasofti.PPAS.Dao
{
public class DiaryDao
{
private ISqlMapper sqlMapper;
public ISqlMapper SqlMapper
{
get { return sqlMapper; }
set { sqlMapper = value; }
}
/// <summary>
/// get all diary
/// </summary>
/// <returns></returns>
public IList<DiaryBean> GetAllDiary()
{
IList<DiaryBean> list = null;
list = sqlMapper.QueryForList<DiaryBean>("SelectAllDiary", null);
return list;
}
}
}
本文摘自 :https://blog.51cto.com/u