| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace YTSoft.BaseCallCenter.Model
- {
- /// <summary>
- /// T_Sys_MobileData:实体类(属性说明自动提取数据库字段的描述信息)
- /// </summary>
- [Serializable]
- public partial class T_Mac
- {
- public T_Mac()
- { }
- #region Model
- private string _mac;
- private int _num;
- /// <summary>
- ///
- /// </summary>
- public string Mac
- {
- set { _mac = value; }
- get { return _mac; }
- }
- /// <summary>
- ///
- /// </summary>
- public int Num
- {
- set { _num = value; }
- get { return _num; }
- }
- #endregion Model
- }
- }
|