终端一体化运控平台
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.
 
 
 

26 lines
694 B

  1. using BPASmartClient.MessageCommunication.MsgControl.Enum;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MessageCommunication.MsgControl.Model
  8. {
  9. /// <summary>
  10. /// 模型的类型中的属性的特性定义,是否是属于列表中的选择框字段项
  11. /// 创建人:奉友福
  12. /// </summary>
  13. public class MsgAttribute :Attribute
  14. {
  15. public enum_MsgOptType enum_消息方向;
  16. public Type type_数据对象类型;
  17. public string str_发送方法名;
  18. public string str_消息描述
  19. {
  20. get;
  21. set;
  22. }
  23. }
  24. }