using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Base { public interface IQC_BASEUSERSCORE { /// /// /// /// /// List GetList(); /// /// 添加 /// /// /// bool Create(ref ValidationErrors errors, QC_BASEUSERSCORE model); /// /// 删除 /// /// /// bool Delete(ref ValidationErrors errors, decimal id); /// /// 删除 员工主管分值表数据 /// void DeleteScoreData(); } }