35 lines
824 B
C#
35 lines
824 B
C#
namespace WX.CRM.Model.EntitySync
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("WSKUSER.SYNC_PACKAGE")]
|
|
public partial class SYNC_PACKAGE
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string BIDATATYPE { get; set; }
|
|
|
|
public decimal? MINVALUE { get; set; }
|
|
|
|
public decimal? MAXVALUE { get; set; }
|
|
|
|
[StringLength(4000)]
|
|
public string EXTVALUE1 { get; set; }
|
|
|
|
[StringLength(4000)]
|
|
public string EXTVALUE2 { get; set; }
|
|
|
|
[StringLength(4000)]
|
|
public string EXTVALUE3 { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|