123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class DictionaryItemView
- {
- public System.Guid? DictionaryItemID { get; set; }
- public string Code { get; set; }
- public string DictionaryCode { get; set; }
- public int? Value { get; set; }
- public string Name { get; set; }
- public string DictionaryName { get; set; }
- public int? OrderNo { get; set; }
- }
- }
|