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.
49 lines
1.2 KiB
49 lines
1.2 KiB
2 years ago
|
namespace Warehouse.Models.mesMysqlModel
|
||
|
{
|
||
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using System.ComponentModel.DataAnnotations.Schema;
|
||
|
using System.Data.Entity.Spatial;
|
||
|
|
||
|
[Table("js_mes.df_userbasic")]
|
||
|
public partial class df_userbasic
|
||
|
{
|
||
|
[Key]
|
||
|
[StringLength(25)]
|
||
|
public string UserID { get; set; }
|
||
|
|
||
|
[StringLength(55)]
|
||
|
public string NickName { get; set; }
|
||
|
|
||
|
[StringLength(255)]
|
||
|
public string PassWord { get; set; }
|
||
|
|
||
|
[StringLength(15)]
|
||
|
public string WorkShop { get; set; }
|
||
|
|
||
|
[StringLength(5)]
|
||
|
public string banci_id { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string MainGroupName { get; set; }
|
||
|
|
||
|
public int? DepID { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string Dept { get; set; }
|
||
|
|
||
|
public DateTime? CreateDate { get; set; }
|
||
|
|
||
|
public DateTime? DueDate { get; set; }
|
||
|
|
||
|
public DateTime? LastChangePWDTime { get; set; }
|
||
|
|
||
|
[StringLength(1)]
|
||
|
public string State { get; set; }
|
||
|
|
||
|
[StringLength(15)]
|
||
|
public string Phone { get; set; }
|
||
|
}
|
||
|
}
|