You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
837 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CommonFunc
{
/// <summary>
/// 登录用户
/// </summary>
public static class LoginUser
{
/// <summary>
/// 用户Id
/// </summary>
public static int UserId { get; set; }
/// <summary>
/// 员工号
/// </summary>
public static string UserCode { get; set; }
/// <summary>
/// 员工姓名
/// </summary>
public static string UserName { get; set; }
/// <summary>
/// 班组
/// </summary>
public static string TeamCode { get; set; }
/// <summary>
/// 班次
/// </summary>
public static string ShiftCode { get; set; }
}
}