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.
26 lines
889 B
26 lines
889 B
using System;
|
|
|
|
namespace NFine.Code
|
|
{
|
|
public class OperatorModel
|
|
{
|
|
public string UserId { get; set; }
|
|
public string UserCode { get; set; }
|
|
public string UserName { get; set; }
|
|
public string UserPwd { get; set; }
|
|
public string CompanyId { get; set; }
|
|
public string DepartmentId { get; set; }
|
|
public string RoleId { get; set; }
|
|
public string RoleEnCode { get; set; }
|
|
public string RoleFullName { get; set; }
|
|
public string LoginIPAddress { get; set; }
|
|
public string LoginIPAddressName { get; set; }
|
|
public string LoginToken { get; set; }
|
|
public DateTime LoginTime { get; set; }
|
|
public bool IsSystem { get; set; }
|
|
public string Location { get; set; }//2019-12-09 sch
|
|
|
|
public string VenCode { get; set; }
|
|
public string Email { get; set; }
|
|
}
|
|
}
|