ComplianceServer/oldcode/WX.CRM.DataSynServer/Domain/SYNC_PUSH_ERR.cs

52 lines
1.6 KiB
C#

using System;
namespace WX.CRM.DataSynServer.Domain
{
public class SYNC_PUSH_ERR
{
public SYNC_PUSH_ERR() { }
public SYNC_PUSH_ERR(string jsontext, string bidatatype, string deptcode) : this(null, jsontext, null, 0, DateTime.Now, DateTime.Now, null, bidatatype, deptcode, null)
{
}
public SYNC_PUSH_ERR(string jsontext, string errmsg, string bidatatype, string deptcode) : this(null, jsontext, null, 0, DateTime.Now, DateTime.Now, errmsg, bidatatype, deptcode, null)
{
}
public SYNC_PUSH_ERR(int? pici, string jsontext, string filename, int? isbatch, DateTime? ctime, DateTime? sendtime, string errmsg, string bidatatype, string deptcode, int? canrepeatnum)
{
this.PICI = pici;
this.JSONTEXT = jsontext;
this.FILENAME = filename;
this.ISBATCH = isbatch;
this.CTIME = ctime;
this.SENDTIME = sendtime;
this.ERRMSG = errmsg;
this.BIDATATYPE = bidatatype;
this.DEPTCODE = deptcode;
this.CANREPEATNUM = canrepeatnum;
}
public decimal PKID { get; set; }
public decimal? PICI { get; set; }
public string JSONTEXT { get; set; }
public string FILENAME { get; set; }
public decimal? ISBATCH { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? SENDTIME { get; set; }
public string ERRMSG { get; set; }
public string BIDATATYPE { get; set; }
public string DEPTCODE { get; set; }
public decimal? CANREPEATNUM { get; set; }
}
}