ComplianceServer/oldcode/Model/EntitySync/SYNC_RECEIVE_SUCC.cs

36 lines
854 B
C#

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