21 lines
583 B
C#
21 lines
583 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
[Table("UPDEV.QQ_DBUPLOADLOG")]
|
|
public class QQ_DBUPLOADLOG
|
|
{
|
|
[Key]
|
|
public decimal ID { get; set; }
|
|
public string QQ { get; set; }
|
|
public string DBFILE { get; set; }
|
|
public string IMEI { get; set; }
|
|
public DateTime CTIME { get; set; }
|
|
public decimal STATUS { get; set; }
|
|
public string CONTENT { get; set; }
|
|
public DateTime DOTIME { get; set; }
|
|
}
|
|
}
|