using APT.BaseData.Domain.ApiModel;
using APT.BaseData.Domain.Entities;
using APT.BaseData.Domain.Enums;
using APT.Infrastructure.Core;
using System;
using System.Collections.Generic;
using APT.Infrastructure.Api;
namespace APT.BaseData.Domain.IServices
{
public interface IPFApproveCallBackSEService : ICommonService
{
///
/// 部门培训计划审批通过
///
///
///
bool departmentTrainPlanAgree(string id);
///
/// 部门培训计划审批通过
///
///
///
bool yearTrainPlanAgree(string id);
///
/// 认可与奖励审批
///
///
///
bool approveAndRewardAgree(string id);
///
/// 责任制考核方案审核
///
///
///
bool safePdtAssessPlanCheck(string id);
}
}