using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models
{
///
/// 客户资料操作记录
///
public class NewClientBrowsingHistory
{
public int Id { get; set; }
///
/// 浏览者Id
///
public int UserId { get; set; }
///
/// 1浏览列表 2 浏览详情 3 添加 4 修改 5 删除
///
public int OperationItem { get; set; }
///
/// 客户资料Id OperationItem == 2,3,4 时存储Id
///
public int ClientId { get; set; }
///
/// 操作时间
///
public DateTime OperationDt { get; set; }
///
/// 地址
///
public string Address { get; set; }
///
/// 设备
///
public string Device { get; set; }
///
/// 设备MacDizhi
///
public string MacAddress { get; set; }
///
/// 外网IP地址
///
public string RealIP { get; set; }
///
/// 内网IP地址
///
public string IntranetIP { get; set; }
///
/// 浏览器
///
public string Browser { get; set; }
///
/// 浏览器类型
///
public string BrowserType { get; set; }
///
/// 浏览器版本号
///
public string BrowserVersion { get; set; }
///
/// 备注
///
public string Remark { get; set; } = "";
}
}