using System; using System.Collections.Generic; using System.Data; using System.Linq; using WX.CRM.Common; using WX.CRM.DAL.Wx; using WX.CRM.IBLL.Wx; using WX.CRM.Model.QueryMap; namespace WX.CRM.BLL.Wx { public class WX_HONGBAO_BL : IWX_HONGBAO { /// /// 群维护 /// /// /// /// /// public 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) { return new WX_HONGBAO_DAL().WxHongBao(v_sendid, v_msgsvrid, v_talker, v_sendusername, v_type, v_createtime, v_title, v_chatroomname, v_jobusername); } /// /// 群成员维护 /// /// /// /// /// public bool WxHongBaoReceuve(string v_sendid, string v_msgsvrid, string v_username, DateTime v_createtime, string v_jobusername) { return new WX_HONGBAO_DAL().WxHongBaoReceuve(v_sendid, v_msgsvrid, v_username, v_createtime, v_jobusername); } /// /// 显示红包 /// /// /// public DataTable ShowWxHongBao(string v_username, decimal? v_eid, DateTime? stime, DateTime? etime) { return new WX_HONGBAO_DAL().ShowWxHongBao(v_username, v_eid, stime, etime); } public IList GetHonBaoNotice() { return new WX_HONGBAO_DAL().GetHonBaoNotice().ToList(); } public bool UpdateHongBaoLookStatus(decimal eid) { return new WX_HONGBAO_DAL().UpdateHongBaoLookStatus(eid); } } }