12345678910111213141516171819202122232425262728293031323334 |
- using Central.Control.Domain;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MES.Production.Service.IService
- {
-
-
-
-
- public interface ICodeManage : IRepository<SYS_CODE>
- {
-
-
-
-
-
- List<SYS_CODE> GetCode(string codetype, params string[] codevalue);
-
-
-
- IQueryable<SYS_CODE> GetDicType();
-
-
-
- string GetCodeByID(int id,string codetype);
-
-
-
- string GetCodeNameByCodeValue(string codeType, string codevalue);
- }
- }
|