TG.WXCRM.V4/Model/EntitySync/SYNC_GENERATE_ERR.cs

29 lines
674 B
C#

namespace WX.CRM.Model.EntitySync
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("WSKUSER.SYNC_GENERATE_ERR")]
public partial class SYNC_GENERATE_ERR
{
[Key]
public decimal PKID { get; set; }
[StringLength(100)]
public string BIDATATYPE { get; set; }
public decimal? PICI { get; set; }
public DateTime? CTIME { get; set; }
public DateTime? DOTIME { get; set; }
[StringLength(4000)]
public string ERRMSG { get; set; }
[StringLength(100)]
public string DEPTCODE { get; set; }
}
}