17 lines
395 B
C#
17 lines
395 B
C#
namespace WX.CRM.Model.EntitySync
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("WSKUSER.SYNC_SYSTEMSTATE")]
|
|
public partial class SYNC_SYSTEMSTATE
|
|
{
|
|
[Key]
|
|
[StringLength(50)]
|
|
public string DEPTCODE { get; set; }
|
|
|
|
public DateTime? LASTPINGTIME { get; set; }
|
|
}
|
|
}
|