21 lines
517 B
C#
21 lines
517 B
C#
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_MSGOPENACCOUNT
|
|
{
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_MSGOPENACCOUNT model);
|
|
|
|
/// <summary>
|
|
/// 修改已读
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
bool UpdateIsView(ref ValidationErrors errors, string resid);
|
|
}
|
|
}
|