65 lines
1.6 KiB
C#
65 lines
1.6 KiB
C#
/**本脚本为自动生成,每次生成会覆盖!请勿手动修改**/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NBF
|
|
{
|
|
[Serializable]
|
|
public partial class GameFishAccepts
|
|
{
|
|
private static ConfigContext<GameFishAccepts> _context;
|
|
|
|
private static ConfigContext<GameFishAccepts> Context => _context ??= Configs.Table<GameFishAccepts>();
|
|
|
|
public static GameFishAccepts Get(int key)
|
|
{
|
|
return Context.Get(key);
|
|
}
|
|
|
|
public static GameFishAccepts Get(Predicate<GameFishAccepts> match)
|
|
{
|
|
return Context.Get(match);
|
|
}
|
|
|
|
public static GameFishAccepts Fist()
|
|
{
|
|
return Context.Fist();
|
|
}
|
|
|
|
public static GameFishAccepts Last()
|
|
{
|
|
return Context.Last();
|
|
}
|
|
|
|
public static GameFishAccepts Fist(Predicate<GameFishAccepts> match)
|
|
{
|
|
return Context.Fist(match);
|
|
}
|
|
|
|
public static GameFishAccepts Last(Predicate<GameFishAccepts> match)
|
|
{
|
|
return Context.Last(match);
|
|
}
|
|
|
|
public static int Count()
|
|
{
|
|
return Context.Count();
|
|
}
|
|
|
|
public static int Count(Func<GameFishAccepts, bool> predicate)
|
|
{
|
|
return Context.Count(predicate);
|
|
}
|
|
|
|
|
|
public static List<GameFishAccepts> GetList()
|
|
{
|
|
return Context.GetList();
|
|
}
|
|
|
|
public static List<GameFishAccepts> GetList(Predicate<GameFishAccepts> match)
|
|
{
|
|
return Context.GetList(match);
|
|
}
|
|
}
|
|
} |