IVersionService.cs 452 B

12345678910111213141516171819
  1. using DapperORMCore.Model.CoreModel;
  2. using NXWMS.Model.AppModels.Condition;
  3. using NXWMS.Model.AppModels.Result;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace NXWMS.IService.NXWMS
  10. {
  11. /// <summary>
  12. /// 版本控制
  13. /// </summary>
  14. public interface IVersionService
  15. {
  16. OperateResultInfo<VerCheckResult> AppCheck(VerAppCheckCondtion info);
  17. }
  18. }