DictSrcAttribute.cs 894 B

12345678910111213141516171819202122232425262728293031
  1. using CZFW.Core;
  2. using System;
  3. namespace CZFW.Framework.Attributes
  4. {
  5. [AttributeUsage(AttributeTargets.Property,AllowMultiple =true, Inherited =true)]
  6. public class DictSrcAttribute:Attribute
  7. {
  8. public string SrcUrl { get; set; }
  9. public string Mark { get; set; }
  10. public int DictId { get; set; }
  11. public string GetSrcUrl()
  12. {
  13. if (!string.IsNullOrWhiteSpace(SrcUrl))
  14. return SrcUrl;
  15. if(!string.IsNullOrWhiteSpace(Mark))
  16. {
  17. SrcUrl = ConfigHelper.Configs["Framework:DictSrcBase"] +"/Get?Mark="+Mark;
  18. return SrcUrl;
  19. }
  20. if(DictId!=0)
  21. {
  22. SrcUrl = ConfigHelper.Configs["Framework:DictSrcBase"] + "/GetDictItemsById?Id=" + DictId;
  23. return SrcUrl;
  24. }
  25. return null;
  26. }
  27. }
  28. }