namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("user")]
|
public partial class user
|
{
|
public int id { get; set; }
|
|
[StringLength(30)]
|
public string WorkNo { get; set; }
|
|
[Required]
|
[StringLength(20)]
|
public string UserName { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string Password { get; set; }
|
|
public int? Status { get; set; }
|
|
public int? roleId { get; set; }
|
|
public DateTime? creatDate { get; set; }
|
|
public DateTime? modifierTime { get; set; }
|
}
|
}
|