48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System;
|
|
|
|
namespace WX.CRM.DataSynClient.Domain
|
|
{
|
|
public class SYNC_RECEIVE
|
|
{
|
|
public SYNC_RECEIVE() { }
|
|
public SYNC_RECEIVE(decimal pkid, string jsontext, string bidatatype, string deptcode) : this(pkid, null, jsontext, null, 0, DateTime.Now, bidatatype, deptcode, null,null)
|
|
{
|
|
|
|
}
|
|
public SYNC_RECEIVE(decimal pkid, int? pici, string jsontext, string filename, int? isbatch, DateTime? ctime, string bidatatype, string deptcode, int? canrepeatnum,int? grade)
|
|
{
|
|
this.PKID = pkid;
|
|
this.PICI = pici;
|
|
this.JSONTEXT = jsontext;
|
|
this.FILENAME = filename;
|
|
this.ISBATCH = isbatch;
|
|
this.CTIME = ctime;
|
|
this.BIDATATYPE = bidatatype;
|
|
this.DEPTCODE = deptcode;
|
|
this.CANREPEATNUM = canrepeatnum;
|
|
this.GRADE = grade;
|
|
}
|
|
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 decimal? CANREPEATNUM { get; set; }
|
|
|
|
public int? GRADE { get; set; }
|
|
|
|
public DateTime? NOTICETIME { get; set; }
|
|
}
|
|
}
|