TG.WXCRM.V4/Model/EntitySync/SYNC_PUSH_SUCC.cs

36 lines
847 B
C#

namespace WX.CRM.Model.EntitySync
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("WSKUSER.SYNC_PUSH_SUCC")]
public partial class SYNC_PUSH_SUCC
{
[Key]
public decimal PKID { get; set; }
public decimal? PICI { get; set; }
//[StringLength(4000)]
public string JSONTEXT { get; set; }
[StringLength(500)]
public string FILENAME { get; set; }
public decimal? ISBATCH { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? SENDTIME { get; set; }
[StringLength(100)]
public string BIDATATYPE { get; set; }
[StringLength(100)]
public string DEPTCODE { get; set; }
public decimal? CANREPEATNUM { get; set; }
}
}