123456789101112131415161718192021222324 |
- using NXWMS.Client.Model.AppModels.Result.Common;
- using NXWMS.Client.Model.CoreModels;
- using NXWMS.Services;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Commons
- {
- public static class BasDictionaryUtil
- {
- public static List<BasDictionaryResult> basDictionaryResultLst { get; set; }
- public static void GetAndSetBasDictionary()
- {
- var result = CommonBasDictionaryService.basDictionaryService.GetBasDictionaryData();
- if (result.Status == OperateStatus.Success)
- {
- basDictionaryResultLst = result.Data;
- }
- }
- }
- }
|