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.
 
 
 
 

17 lines
489 B

using System;
using System.Collections.Generic;
using System.Text;
namespace ReZero.SuperAPI
{
public class ZeroUserInfo : DbBase
{
public string? UserName { get; set; }
public string? Password { get; set; }
public bool IsMasterAdmin { get; set; }
[SqlSugar.SugarColumn(IsNullable =true)]
public string? Avatar { get; set; }
[SqlSugar.SugarColumn(IsNullable = true)]
public string? BusinessAccount { get; set; }
}
}