using System.Collections.Generic;
namespace WX.CRM.IBLL.QH
{
public interface IQH_MONTHLYSTATEMENT_Q
{
Model.Entity.QH_MONTHLYSTATEMENT getMonthlyStatement(decimal monthCode);
decimal? getMaxMonthCode();
///
/// 是否已经月结
///
/// 月结码
///
bool GetIsYueJie(decimal monthcode);
///
/// 获取所有的月结年月
///
///
List GetAllOpYeanAndMonth();
///
/// 获取所有月结年月(不包含反月结)
///
///
List GetAllMonth();
List GetAllBalanceCode();
List GetMONTHLYSTATEMENTList(int pageIndex, int pageSize, out int rcount);
List GetMonthByUserPerformanct();
}
}