using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace WMS.Core
{
///
///
///
[SugarTable("ACL_USERTOKEN")]
public partial class ACL_USERTOKEN
{
public ACL_USERTOKEN(){
}
///
/// Desc:编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string F_NO {get;set;}
///
/// Desc:用户编号
/// Default:
/// Nullable:False
///
public string F_USERNO {get;set;}
///
/// Desc:用户姓名
/// Default:
/// Nullable:True
///
public string F_USERNAME {get;set;}
///
/// Desc:登录时间
/// Default:
/// Nullable:False
///
public DateTime F_BTIME {get;set;}
///
/// Desc:最后一次操作时间
/// Default:
/// Nullable:False
///
public DateTime F_ETIME {get;set;}
///
/// Desc:APP类型
/// Default:
/// Nullable:False
///
public int F_APPTYPENUM {get;set;}
///
/// Desc:登录IP地址
/// Default:
/// Nullable:True
///
public string F_IPADDRESS {get;set;}
///
/// Desc:离线版登录仓库
/// Default:
/// Nullable:True
///
public string F_WAREHOUSENO {get;set;}
///
/// Desc:区域列表
/// Default:
/// Nullable:True
///
public string F_WAREANOLIST {get;set;}
///
/// Desc:访问设备编号
/// Default:
/// Nullable:True
///
public string F_APPDEVICENO {get;set;}
}
}