|
12345678910111213141516171819202122232425 |
- using BPASmartClient.MessageCommunication.MsgControl.Enum;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MessageCommunication.MsgControl.Model
- {
- /// <summary>
- /// 模型的类型中的属性的特性定义,是否是属于列表中的选择框字段项
- /// 创建人:奉友福
- /// </summary>
- public class MsgAttribute :Attribute
- {
- public enum_MsgOptType enum_消息方向;
- public Type type_数据对象类型;
- public string str_发送方法名;
- public string str_消息描述
- {
- get;
- set;
- }
- }
- }
|