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.
60 lines
1.4 KiB
60 lines
1.4 KiB
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using QMAPP.Entity;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using System.Data;
|
||
|
|
||
|
namespace QMAPP.FJC.Entity.Message
|
||
|
{
|
||
|
[DBTable(TableName = "OutBox")]
|
||
|
public class OutBox : BaseEntity
|
||
|
{
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "ID", DataType = DbType.String, IsKey = true)]
|
||
|
public string ID { get; set; }
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "username", DataType = DbType.String)]
|
||
|
public string USERNAME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "mbno", DataType = DbType.String)]
|
||
|
public string MBNO { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "Msg", DataType = DbType.String)]
|
||
|
public string MSG { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "SendTime", DataType = DbType.DateTime)]
|
||
|
public DateTime SENDTIME { get; set; }
|
||
|
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "comport", DataType = DbType.String)]
|
||
|
public string COMPORT { get; set; }
|
||
|
|
||
|
///<summary>
|
||
|
///
|
||
|
///</summary>
|
||
|
[DBColumn(ColumnName = "Report", DataType = DbType.String)]
|
||
|
public string REPORT { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|