You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
2 years ago
|
namespace Warehouse.Models.Permission
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Data.Entity.Spatial;
|
||
|
|
||
|
[Table("wh.tusers")]
|
||
|
public partial class tuser01
|
||
|
{
|
||
|
[Key]
|
||
|
public int UserId { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(100)]
|
||
|
public string Username { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(100)]
|
||
|
public string DisplayName { get; set; }
|
||
|
|
||
|
[StringLength(100)]
|
||
|
public string workshop { get; set; }
|
||
|
|
||
|
[Required]
|
||
|
[StringLength(86)]
|
||
|
public string Password { get; set; }
|
||
|
|
||
|
[StringLength(10)]
|
||
|
public string PasswordSalt { get; set; }
|
||
|
|
||
|
public DateTime? LastDirectoryUpdate { get; set; }
|
||
|
|
||
|
[StringLength(100)]
|
||
|
public string UserImage { get; set; }
|
||
|
|
||
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
||
|
public DateTime Createtime { get; set; }
|
||
|
|
||
|
public int? CreateUserId { get; set; }
|
||
|
|
||
|
public DateTime? UpdateDate { get; set; }
|
||
|
|
||
|
public int? UpdateUserId { get; set; }
|
||
|
|
||
|
public short IsActive { get; set; }
|
||
|
}
|
||
|
}
|