EnumSrcAttribute.cs 606 B

1234567891011121314151617181920212223
  1. using CZFW.Core;
  2. using System;
  3. namespace CZFW.Framework.Attributes
  4. {
  5. public class EnumSrcAttribute:Attribute
  6. {
  7. public string Name { get; set; }
  8. public string SrcUrl { get; set; }
  9. public string GetSrcUrl()
  10. {
  11. if (!string.IsNullOrWhiteSpace(SrcUrl))
  12. return SrcUrl;
  13. if (!string.IsNullOrWhiteSpace(Name))
  14. {
  15. SrcUrl = ConfigHelper.Configs["Framework:EnumSrcBase"] + "/GetEnumItems?enumstr=" + Name;
  16. return SrcUrl;
  17. }
  18. return null;
  19. }
  20. }
  21. }