20 lines
459 B
C#
20 lines
459 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.WX_ACTIVEUSER")]
|
|
public partial class WX_ACTIVEUSER
|
|
{
|
|
[Key]
|
|
[StringLength(200)]
|
|
public string USERNAME { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string ALIAS { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string RESOURCETAG { get; set; }
|
|
}
|
|
}
|