using System;
using System.Collections.Generic;
using System.Data;
using WX.CRM.Model.QueryMap;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_HONGBAO
{
///
/// 群维护
///
///
///
///
///
bool WxHongBao(string v_sendid, string v_msgsvrid, string v_talker, string v_sendusername, decimal v_type, DateTime v_createtime, string v_title, string v_chatroomname, string v_jobusername);
///
/// 群成员维护
///
///
///
///
///
bool WxHongBaoReceuve(string v_sendid, string v_msgsvrid, string v_username, DateTime v_createtime, string v_jobusername);
///
/// 显示红包
///
///
///
DataTable ShowWxHongBao(string v_username, decimal? v_eid, DateTime? stime, DateTime? etime);
IList GetHonBaoNotice();
bool UpdateHongBaoLookStatus(decimal eid);
}
}