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

20 lines
398 B
C#
Raw Normal View History

using Bunny.Dao.Entity.Base;
2024-08-08 22:23:36 +08:00
namespace Bunny.Dao.Entity.System;
2024-08-08 22:23:36 +08:00
public class User : BaseEntity
2024-08-08 22:23:36 +08:00
{
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; }
}