28 lines
752 B
C#
28 lines
752 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_UNLINE_NOTICECONFIG
|
|
{
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.WX_UNLINE_NOTICECONFIG model);
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
|
|
/// <summary>
|
|
/// 推送配置人
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<WX.CRM.Model.Entity.WX_UNLINE_NOTICECONFIG> GetList();
|
|
}
|
|
}
|