16 lines
305 B
C#
16 lines
305 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace DAL.New_Models;
|
|||
|
|
|
|||
|
|
public partial class TbSysActiveUser
|
|||
|
|
{
|
|||
|
|
public long Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Account { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string LoginIp { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string SessionId { get; set; } = null!;
|
|||
|
|
}
|