using System; using System.Data; using WX.CRM.Common; namespace WX.CRM.IBLL.TS { public interface IWX_TS_CMD { /// /// 提交发送朋友圈 /// /// 内容 /// 推送类型 /// 时间 /// 日期 /// /// bool CreateFriendscircle(string v_txt, int v_timeType, string v_exe_date, string v_exe_time, string v_imgpath, ref ValidationErrors errors); /// /// 获取可推送cmd /// /// DataTable GetCmdPici(); /// /// 获取图片内容 /// /// 批次号 /// DataTable GetFriendScircleImgList(decimal pici); /// /// 修改批次推送状态 /// /// 批次 /// 发送时间 /// 状态 /// 推送返回的消息 /// /// bool UpdateSendStutas(decimal v_pici, DateTime v_senddate, int v_stutas, string v_msg, ref ValidationErrors errors); /// /// 发送朋友圈日志 /// /// /// /// /// /// DataTable GetFirneScirccleLog(DateTime? stime, DateTime? etime, string v_alias, ref Pager pager); /// /// 获取朋友圈内容 /// /// /// DataTable GetFriendScircleTxtByPici(decimal pici); } }