43 lines
955 B
C#
43 lines
955 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityFB
|
|
{
|
|
public class bas_inneruser
|
|
{
|
|
[Key]
|
|
public decimal pkid { get; set; }
|
|
|
|
public string uname { get; set; }
|
|
|
|
public decimal eid { get; set; }
|
|
public string gender { get; set; }
|
|
|
|
public DateTime birthday { get; set; }
|
|
|
|
public string password { get; set; }
|
|
|
|
public short isdismiss { get; set; }
|
|
|
|
public DateTime? dismisstime { get; set; }
|
|
|
|
public decimal? dismisstype { get; set; }
|
|
|
|
public DateTime? entrydate { get; set; }
|
|
|
|
public DateTime? ctime { get; set; }
|
|
|
|
public decimal? createuser { get; set; }
|
|
|
|
public DateTime? utime { get; set; }
|
|
|
|
public decimal? updateuser { get; set; }
|
|
|
|
public DateTime? positivetime { get; set; }
|
|
|
|
public string truename { get; set; }
|
|
|
|
public short ishide { get; set; }
|
|
}
|
|
}
|