Files
IOT/Model/Entity/UserEntity.cs
2026-01-14 11:22:58 +08:00

17 lines
372 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.Entity
{
public class UserEntity:BaseEntity
{
public string UserName { get; set; }
public string Password { get; set; }
public string Role { get; set; }
public string Status { get; set; }
}
}