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.
26 lines
800 B
26 lines
800 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ReportTemplateTool.Models
|
|
{
|
|
/// <summary>
|
|
/// 用户配置表
|
|
/// </summary>
|
|
public class DictUser
|
|
{
|
|
[Key]
|
|
public string UserCode { get; set; }
|
|
public string? RoleCode { get; set; }
|
|
public string? GroupCode { get; set; }
|
|
public string? UserName { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Sex { get; set; }
|
|
public DateTime? Birth { get; set; }
|
|
public string? Tel { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Photo { get; set; }
|
|
public byte[]? SignImage { get; set; }
|
|
public string? RightCode { get; set; }
|
|
public bool? IsLab { get; set; }
|
|
}
|
|
}
|
|
|