songjun
2024-09-04 cc908053e0b5075fbfd27350b6da4b39bca9e550
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PalGain.Core;
 
namespace sbcLabSystem.Data.Domain.Account
{
    public class UserInfo : BaseEntity
    {
        public string UserNo { get; set; }
        public string UserName { get; set; }
        public string Email { get; set; }
        public int IsUse { get; set; }
        public string Password { get; set; }
        public string CurrentEnvirnoment { get; set; }
        public virtual List<RoleInfo> Roles { get; set; }
        public DateTime ModifiedTime { get; set; }
        public string Barcode { get; set; }
        public string Remark { get; set; }
    }
}