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); } }