This commit is contained in:
chikyun.kim
2019-07-26 17:28:19 +09:00
parent ae209e00af
commit 11d7c7f704
58 changed files with 3360 additions and 6285 deletions

View File

@@ -8,19 +8,18 @@ namespace FCOMMON
{
public static partial class DBM
{
public enum eAutoType
public enum eAuthType
{
purchase,
holyday,
project,
jobreport,
}
public static int getAuth(eAutoType type, string uid)
public static int getAuth(eAuthType type, string uid)
{
return getAuth(type.ToString(), uid);
}
public static int getAuth(eAutoType type)
public static int getAuth(eAuthType type)
{
return getAuth(type.ToString(), info.Login.no);
}