Laservall_manager_system/VOL.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs

16 lines
371 B
C#
Raw Normal View History

2025-09-26 13:35:45 +08:00
/*
*HR_DeptShip类的业务代码接口应在此处编写
*/
using VOL.Core.BaseProvider;
using VOL.Entity.DomainModels;
using VOL.Core.Utilities;
using System.Linq.Expressions;
using VOL.YSErp.Models.Biz;
namespace VOL.HR.IServices
{
public partial interface IHR_DeptShipService
{
Task<List<YSERPDepartment>> GetYSERPDepartments();
}
}