12345678910111213141516171819 |
- using DapperORMCore.Model.CoreModel;
- using NXWMS.Model.AppModels.Condition;
- using NXWMS.Model.AppModels.Result;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace NXWMS.IService.NXWMS
- {
- /// <summary>
- /// 版本控制
- /// </summary>
- public interface IVersionService
- {
- OperateResultInfo<VerCheckResult> AppCheck(VerAppCheckCondtion info);
- }
- }
|