26 lines
603 B
C#
26 lines
603 B
C#
namespace WX.CRM.Model.EntitySync
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("WSKUSER.SYNC_GENERATE_SUCC")]
|
|
public partial class SYNC_GENERATE_SUCC
|
|
{
|
|
[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(100)]
|
|
public string DEPTCODE { get; set; }
|
|
}
|
|
}
|