26 lines
666 B
C#
26 lines
666 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Redis
|
|
{
|
|
public class CACHE_SSODATASYNC
|
|
{
|
|
[NotMapped]
|
|
public decimal PKID { get; set; }
|
|
[NotMapped]
|
|
public string TABLETYPE { get; set; }
|
|
[NotMapped]
|
|
public string KEYS { get; set; }
|
|
[NotMapped]
|
|
public string OPTYPE { get; set; }
|
|
[NotMapped]
|
|
public DateTime? TIME { get; set; }
|
|
[NotMapped]
|
|
public DateTime? LASTSYNCTIME { get; set; }
|
|
[NotMapped]
|
|
public decimal? ERRNUM { get; set; }
|
|
[NotMapped]
|
|
public string ERRMSG { get; set; }
|
|
}
|
|
}
|