using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace ProductionLineMonitor.Core.Models
{
///
/// 用户表
///
[Table("Users")]
public class User : Base
{
///
/// 工号
///
public string JobNo { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// 密码
///
public string Password { get; set; }
///
/// 角色Id
///
public string RoleId { get; set; }
}
}