34 lines
845 B
C#
34 lines
845 B
C#
namespace WX.CRM.Model.EntitySync
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("WSKUSER.REDIS_CACHE_SSODATASYNC_OK")]
|
|
public partial class REDIS_CACHE_SSODATASYNC_OK
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TABLETYPE { get; set; }
|
|
|
|
[StringLength(4000)]
|
|
public string KEYS { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string OPTYPE { get; set; }
|
|
|
|
public DateTime? TIME { get; set; }
|
|
|
|
public DateTime? LASTSYNCTIME { get; set; }
|
|
|
|
public decimal? ERRNUM { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string ERRMSG { get; set; }
|
|
|
|
public virtual REDIS_CACHE_TABLETYPE REDIS_CACHE_TABLETYPE { get; set; }
|
|
}
|
|
}
|