BasDictionaryResult.cs 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Client.Model.AppModels.Result.Common
  6. {
  7. public class BasDictionaryResult
  8. {
  9. public int DICTIONARY_ID { get; set; }
  10. public string NEWID { get; set; }
  11. public string DICTIONARY_CODE { get; set; }
  12. public string DICTIONARY_NAME { get; set; }
  13. public string DICTIONARY_ITEM_CODE { get; set; }
  14. public string DICTIONARY_ITEM_NAME { get; set; }
  15. public int USED_FLAG { get; set; }
  16. public string USED_FLAG_NAME { get; set; }
  17. public int DEL_FLAG { get; set; }
  18. public string DEL_FLAG_NAME { get; set; }
  19. public int CREATE_BY { get; set; }
  20. public string CREATE_NAME { get; set; }
  21. public int UPDATE_BY { get; set; }
  22. public string UPDATE_NAME { get; set; }
  23. public string REMARKS1 { get; set; }
  24. public string REMARKS2 { get; set; }
  25. public string REMARKS3 { get; set; }
  26. public string REMARKS4 { get; set; }
  27. public string REMARKS5 { get; set; }
  28. }
  29. }