| | |
| | | /// 实体:PDA登录日志 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("PDA登录日志")] |
| | | [Serializable] |
| | | [SugarTable("LOG_PDA_LOGIN")] |
| | | public class LOG_PDA_LOGIN : DbEntityOnlyID |
| | |
| | | /// <summary> |
| | | /// SessionID |
| | | /// </summary> |
| | | [DisplayName("SessionID")] |
| | | public string SESSION_ID { get; set; } |
| | | /// <summary> |
| | | /// 工厂 |
| | | /// </summary> |
| | | public string FACTORY { get; set; } |
| | | /// <summary> |
| | | /// 用户ID |
| | | /// </summary> |
| | | [DisplayName("用户ID")] |
| | | public string USER_ID { get; set; } |
| | | /// <summary> |
| | | /// 登录信息 |
| | | /// </summary> |
| | | [DisplayName("登录信息")] |
| | | public string LOGIN_FROM { get; set; } |
| | | /// <summary> |
| | | /// 登录Channel |
| | | /// </summary> |
| | | [DisplayName("登录Channel")] |
| | | public string LOGIN_CHANNEL { get; set; } |
| | | /// <summary> |
| | | /// 登录URL |
| | | /// </summary> |
| | | [DisplayName("登录URL")] |
| | | public string LOGIN_URL { get; set; } |
| | | /// <summary> |
| | | /// 登录时间 |
| | | /// </summary> |
| | | [DisplayName("登录时间")] |
| | | public DateTime LOGIN_TIME { get; set; } = DateTime.MinValue; |
| | | /// <summary> |
| | | /// 登出URL |
| | | /// </summary> |
| | | [DisplayName("登出URL")] |
| | | public string LOGOUT_URL { get; set; } |
| | | /// <summary> |
| | | /// 登出时间 |
| | | /// </summary> |
| | | [DisplayName("登出时间")] |
| | | public DateTime LOGOUT_TIME { get; set; } = DateTime.MinValue; |
| | | /// <summary> |
| | | /// 组织编码 |
| | | /// </summary> |
| | | [DisplayName("组织编码")] |
| | | public string ORG_CODE { get; set; } |
| | | /// <summary> |
| | | /// 生产单元编码 |
| | | /// </summary> |
| | | [DisplayName("生产单元编码")] |
| | | public string PROD_CODE { get; set; } |
| | | /// <summary> |
| | | /// 仓库单元编码 |
| | | /// </summary> |
| | | [DisplayName("仓库单元编码")] |
| | | public string WH_CODE { get; set; } |
| | | #endregion |
| | | |
| | | #region 虚拟属性 |