CSharp-Single-EFCore/Bunny.Dao/Entity/System/User.cs

20 lines
398 B
C#

using Bunny.Dao.Entity.Base;
namespace Bunny.Dao.Entity.System;
public class User : BaseEntity
{
public string? UserName { get; set; }
public string? Password { get; set; }
public string? Email { get; set; }
public string? Phone { get; set; }
public string? QrCode { get; set; }
public string? CompanyCode { get; set; }
public string? DeptCode { get; set; }
}