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.
61 lines
1.5 KiB
61 lines
1.5 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.permission_usergroup")]
|
||
|
public partial class permission_usergroup
|
||
|
{
|
||
|
[Key]
|
||
|
[Column(Order = 0)]
|
||
|
[StringLength(40)]
|
||
|
public string USERNAME { get; set; }
|
||
|
|
||
|
[StringLength(40)]
|
||
|
public string NICKNAME { get; set; }
|
||
|
|
||
|
[Key]
|
||
|
[Column(Order = 1)]
|
||
|
[StringLength(255)]
|
||
|
public string GROUPNAME { get; set; }
|
||
|
|
||
|
[Column(TypeName = "char")]
|
||
|
[Required]
|
||
|
[StringLength(1)]
|
||
|
public string STATE { get; set; }
|
||
|
|
||
|
[StringLength(255)]
|
||
|
public string PWD { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string permission_usergroupcol { get; set; }
|
||
|
|
||
|
[Column(TypeName = "char")]
|
||
|
[StringLength(1)]
|
||
|
public string IsDomainUser { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string factory { get; set; }
|
||
|
|
||
|
[StringLength(45)]
|
||
|
public string workshop { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string banci_id { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string op { get; set; }
|
||
|
|
||
|
[StringLength(20)]
|
||
|
public string dept { get; set; }
|
||
|
|
||
|
public DateTime? create_date { get; set; }
|
||
|
|
||
|
[StringLength(12)]
|
||
|
public string Phone { get; set; }
|
||
|
}
|
||
|
}
|