ComplianceServer/oldcode/Core.Model/Entity/RES_CUSTOMERUSER.cs

21 lines
481 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("RES_CUSTOMERUSER")]
public partial class RES_CUSTOMERUSER
{
[Key]
public decimal PKID { get; set; }
[StringLength(18)]
public string RESID { get; set; }
[StringLength(50)]
public string USERNAME { get; set; }
public DateTime? CTIME { get; set; }
}
}