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

39 lines
924 B
C#

namespace WX.CRM.Model.EntitySync
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("WSKUSER.SYNC_RECEIVE_ERR")]
public partial class SYNC_RECEIVE_ERR
{
[Key]
public decimal PKID { get; set; }
public decimal? PICI { get; set; }
//[StringLength(4000)]
public string JSONTEXT { get; set; }
[StringLength(1000)]
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(200)]
public string ERRMSG { get; set; }
[StringLength(100)]
public string DEPTCODE { get; set; }
public decimal? CANREPEATNUM { get; set; }
}
}