34 lines
873 B
C#
34 lines
873 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IQC_BASEUSERSCORE
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
List<QC_BASEUSERSCORE> GetList();
|
|
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, QC_BASEUSERSCORE model);
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
/// <summary>
|
|
/// 删除 员工主管分值表数据
|
|
/// </summary>
|
|
void DeleteScoreData();
|
|
}
|
|
}
|