终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 regels
563 B

  1. using System;
  2. namespace BPASmartClient.FoodStationTest.Model.GVL
  3. {
  4. [AttributeUsage(AttributeTargets.Property)]
  5. public sealed class VarCommAttribute : Attribute
  6. {
  7. public VarCommAttribute(string address, string des)
  8. {
  9. Address = address;
  10. Describe = des;
  11. }
  12. /// <summary>
  13. /// 变量信息描述。
  14. /// </summary>
  15. public string Describe { get; set; }
  16. /// <summary>
  17. /// 变量地址
  18. /// </summary>
  19. public string Address { get; set; }
  20. }
  21. }