ComplianceServer/oldcode/Model/Entity/WW_EXTUSER_RESID.cs

16 lines
376 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.WW_EXTUSER_RESID")]
public class WW_EXTUSER_RESID
{
[Key]
public string USERID { get; set; }
public string RESID { get; set; }
public DateTime CTIME { get; set; }
}
}