using System; using System.Collections.Generic; namespace WebAPIServer.Models; /// /// 用户列表 /// public partial class TblUtsManageUser { /// /// 用户索引 /// public int Id { get; set; } /// /// 所属公司ID /// public int CompanyId { get; set; } /// /// 用户名 /// public string? UserName { get; set; } /// /// 登录密码 /// public string? Password { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 手机号码 /// public string? Mobile { get; set; } /// /// 微信账号 /// public string? WeiXin { get; set; } /// /// 电子邮箱 /// public string? Email { get; set; } /// /// 是否有效 /// public bool IsValid { get; set; } /// /// 是否为管理员 默认是0 管理员为1 /// public bool IsAdmin { get; set; } /// /// 条码登陆 /// public string? BarCode { get; set; } /// /// 设置条码权限 /// public bool SetBarCode { get; set; } public DateTime? UpdateTime { get; set; } /// /// 设置结单权限 /// public bool AccountBill { get; set; } /// /// 登录密码明文 /// public string? PlaintextPwd { get; set; } }