TG.WXCRM.V4/WX.CRM.DataSynServer/Domain/SYNC_PUSH.cs

45 lines
1.3 KiB
C#

using System;
namespace WX.CRM.DataSynServer.Domain
{
public class SYNC_PUSH
{
public SYNC_PUSH() { }
public SYNC_PUSH(string jsontext, string bidatatype, string deptcode) : this(null, jsontext, null, 0, DateTime.Now, bidatatype, deptcode, null, null)
{
}
public SYNC_PUSH(int? pici, string jsontext, string filename, int? isbatch, DateTime? ctime, string bidatatype, string deptcode, DateTime? nexttime, int? canrepeatnum)
{
this.pici = pici;
this.jsontext = jsontext;
this.filename = filename;
this.isbatch = isbatch;
this.ctime = ctime;
this.bidatatype = bidatatype;
this.deptcode = deptcode;
this.nexttime = nexttime;
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 string bidatatype { get; set; }
public string deptcode { get; set; }
public DateTime? nexttime { get; set; }
public decimal? canrepeatnum { get; set; }
}
}