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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/Util/UserJudge.cs

40 lines
1009 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DevExpress.DataProcessing;
using Mesnac.Basic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mesnac.Action.ChemicalWeighing.Util
{
public class UserJudge
{
/// <summary>
/// 判断是否为超级用户
/// </summary>
/// <returns>true为超级用户false为普通Run环境用户</returns>
public static bool IsEdit()
{
string userName = UserInfo.Instance.UserName;
if(userName == "mesnac" || string.IsNullOrEmpty(userName))
{
return true;
}
else
{
return false;
}
}
/// <summary>
/// 判断是否为超级用户
/// </summary>
/// <returns>true为普通Run环境用户false为超级用户</returns>
public static bool IsNormalUser()
{
return !IsEdit();
}
}
}