ComplianceServer/oldcode/IBLL/Base/IBAS_LEFTMEMU.cs

27 lines
860 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using WX.CRM.Common;
namespace WX.CRM.IBLL.Base
{
public interface IBAS_LEFTMEMU
{
/// <summary>
/// 新增
/// </summary>
bool Create_leftMemu(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_LEFTMEMU model);
/// <summary>
/// 删除
/// </summary>
bool Delete_leftMemu(ref ValidationErrors errors, decimal id);
/// <summary>
/// 修改数据
/// </summary>
bool Update_leftMemu(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_LEFTMEMU model);
/// <summary>
/// 更新顺序
/// </summary>
/// <param name="ids">id集合用“”隔开</param>
/// <param name="sortIds">sortid集合“”隔开</param>
bool Sort_leftMemu(ref ValidationErrors errors, string ids, string sortIds);
}
}