ComplianceServer/oldcode/Model/Entity/RES_CUSTOMERUSER.cs

22 lines
495 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.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; }
}
}