You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.5 KiB
C#
65 lines
2.5 KiB
C#
using System;
|
|
using LinqToDB.Mapping;
|
|
|
|
namespace TradeUsedSale.Repositories.Models
|
|
{
|
|
public class JC_UserInfo
|
|
{
|
|
[PrimaryKey, Identity] public int UserId { get; set; }
|
|
public string Name { get; set; }
|
|
public string SpellName { get; set; }
|
|
public string EnglishName { get; set; }
|
|
public string Sex { get; set; }
|
|
public string UserName { get; set; }
|
|
public string Password { get; set; }
|
|
public string UserType { get; set; }
|
|
public int? State { get; set; }
|
|
public int? CompanyId { get; set; }
|
|
public string UserCode { get; set; }
|
|
public int? LoginCount { get; set; }
|
|
public DateTime? LastLoginTime { get; set; }
|
|
public string LastLoginIp { get; set; }
|
|
public string Photo { get; set; }
|
|
public DateTime? UpdateDate { get; set; }
|
|
public string Duty { get; set; }
|
|
public string Mobile1 { get; set; }
|
|
public string Mobile2 { get; set; }
|
|
public string Mobile3 { get; set; }
|
|
public string UserCard { get; set; }
|
|
public DateTime? InDate { get; set; }
|
|
public string DeptName { get; set; }
|
|
public string IDCard { get; set; }
|
|
public string SchoolLevel { get; set; }
|
|
public string School { get; set; }
|
|
public DateTime? BornDate { get; set; }
|
|
public string BornAddr { get; set; }
|
|
public DateTime? ContractDate { get; set; }
|
|
public DateTime? JoinDate { get; set; }
|
|
public DateTime? FormalDate { get; set; }
|
|
public string IsMarry { get; set; }
|
|
public string IsBaby { get; set; }
|
|
public string HuKou { get; set; }
|
|
public string HuKouAddr { get; set; }
|
|
public string NowAddr { get; set; }
|
|
public int? IsRoom { get; set; }
|
|
public string RoomAddr { get; set; }
|
|
public string Political { get; set; }
|
|
public int? DeptId { get; set; }
|
|
public string Traffic { get; set; }
|
|
public string QQ { get; set; }
|
|
public string Email { get; set; }
|
|
public string EmployeeType { get; set; }
|
|
public int? Holidays { get; set; }
|
|
public int? IsLogin { get; set; }
|
|
public string WorkDesc { get; set; }
|
|
public int? AnnualDay { get; set; }
|
|
public int? MoodDay { get; set; }
|
|
public string GroupName { get; set; }
|
|
public int? guserid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1能登陆erpoms
|
|
/// </summary>
|
|
public int? isoms { get; set; }
|
|
}
|
|
} |