35 lines
1000 B
C#
35 lines
1000 B
C#
using System.Collections.Generic;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_MONTHLYSTATEMENT_Q
|
|
{
|
|
Model.Entity.QH_MONTHLYSTATEMENT getMonthlyStatement(decimal monthCode);
|
|
decimal? getMaxMonthCode();
|
|
/// <summary>
|
|
/// 是否已经月结
|
|
/// </summary>
|
|
/// <param name="monthcode">月结码</param>
|
|
/// <returns></returns>
|
|
bool GetIsYueJie(decimal monthcode);
|
|
/// <summary>
|
|
/// 获取所有的月结年月
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<decimal> GetAllOpYeanAndMonth();
|
|
|
|
/// <summary>
|
|
/// 获取所有月结年月(不包含反月结)
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<decimal> GetAllMonth();
|
|
|
|
|
|
List<decimal> GetAllBalanceCode();
|
|
List<Model.Entity.QH_MONTHLYSTATEMENT> GetMONTHLYSTATEMENTList(int pageIndex, int pageSize, out int rcount);
|
|
|
|
List<string> GetMonthByUserPerformanct();
|
|
|
|
}
|
|
}
|