| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- /// <summary>
- /// 短信接收表
- /// </summary>
- [Serializable]
- public partial class T_SMS_Receive
- {
- /// <summary>
- /// ID
- /// </summary>
- private int _id;
- public int ID
- {
- get { return _id; }
- set { _id = value; }
- }
- /// <summary>
- /// Telephone
- /// </summary>
- private string _telephone;
- public string Telephone
- {
- get { return _telephone; }
- set { _telephone = value; }
- }
- /// <summary>
- /// Detail
- /// </summary>
- private string _detail;
- public string Detail
- {
- get { return _detail; }
- set { _detail = value; }
- }
- /// <summary>
- /// State
- /// </summary>
- private int? _state;
- public int? State
- {
- get { return _state; }
- set { _state = value; }
- }
- /// <summary>
- /// CreateDate
- /// </summary>
- private DateTime? _createdate;
- public DateTime? CreateDate
- {
- get { return _createdate; }
- set { _createdate = value; }
- }
- }
- }
|