20 lines
476 B
C#
20 lines
476 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
|
|
[Table("UPDEV.WW_USER_EXTUSER")]
|
|
public class WW_USER_EXTUSER
|
|
{
|
|
[Key, Column(Order = 0)]
|
|
public string USERID { get; set; }
|
|
[Key, Column(Order = 1)]
|
|
public string EXTUSERID { get; set; }
|
|
public string CORPID { get; set; }
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
}
|
|
}
|