ComplianceServer/oldcode/Model/EntitySync/SYNC_PUSH_ERR.cs

39 lines
918 B
C#

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