123456789101112131415161718192021 |
- using DapperORMCore.Model.CoreModel;
- using NXWMS.Model.AppModels.Condition.Base;
- using NXWMS.Model.AppModels.Result.Base;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.IService.NXWMS.Base
- {
- /// <summary>
- /// 包装接口
- /// </summary>
- public interface IPackageService
- {
- OperateResultInfo<PageQueryResultInfo<PackageResult>> GetList(PackageSearchCondition info);
-
- }
- }
|