ComplianceServer/oldcode/Model/EntitySync/SYNC_RECEIVE.cs

34 lines
795 B
C#

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