BasDictionaryResult.cs 1.1 KB

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