IAreaService.cs 590 B

1234567891011121314151617181920212223
  1. using DapperORMCore.Model.CoreModel;
  2. using NXWMS.Model.AppModels.Condition;
  3. using NXWMS.Model.AppModels.Condition.Base;
  4. using NXWMS.Model.AppModels.Condition.SysSettings;
  5. using NXWMS.Model.AppModels.Result.Base;
  6. using NXWMS.Model.AppModels.Result.SysSettings;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Data;
  10. using System.Text;
  11. namespace NXWMS.IService.NXWMS.Base
  12. {
  13. /// <summary>
  14. /// 区域服务
  15. /// </summary>
  16. public interface IAreaService
  17. {
  18. OperateResultInfo<PageQueryResultInfo<AreaResult>> GetList(AreaSearchCondition info);
  19. }
  20. }