-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6,678 changed files
with
1,307,897 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
using System; | ||
using System.Data; | ||
using System.Collections.Generic; | ||
using System.Text.RegularExpressions; | ||
using LB.DataAccess; | ||
namespace DB.LebiShop | ||
{ | ||
/// <summary> | ||
/// 业务逻辑类B_Lebi_AdminSkin 的摘要说明。 | ||
/// </summary> | ||
public partial class B_Lebi_AdminSkin | ||
{ | ||
public B_Lebi_AdminSkin() | ||
{} | ||
#region 成员方法 | ||
|
||
/// <summary> | ||
/// 返回单个字符串 | ||
/// </summary> | ||
public static string GetValue(string col,string where, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetValue(col,where,seconds); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// 返回记录条数 | ||
/// </summary> | ||
public static int Counts(string where, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.Counts(where,seconds); | ||
} | ||
public static int Counts(SQLPara para, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.Counts(para,seconds); | ||
} | ||
|
||
/// <summary> | ||
/// 增加一条数据 | ||
/// </summary> | ||
public static int Add(Lebi_AdminSkin model) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.Add(model); | ||
} | ||
|
||
/// <summary> | ||
/// 更新一条数据 | ||
/// </summary> | ||
public static void Update(Lebi_AdminSkin model) | ||
{ | ||
D_Lebi_AdminSkin.Instance.Update(model); | ||
} | ||
|
||
/// <summary> | ||
/// 删除一条数据 | ||
/// </summary> | ||
public static void Delete(int id) | ||
{ | ||
|
||
D_Lebi_AdminSkin.Instance.Delete(id); | ||
} | ||
/// <summary> | ||
/// 删除多条数据 by where条件 | ||
/// </summary> | ||
public static void Delete(string where) | ||
{ | ||
|
||
D_Lebi_AdminSkin.Instance.Delete(where); | ||
} | ||
/// <summary> | ||
/// 删除多条数据 | ||
/// </summary> | ||
public static void Delete(SQLPara para) | ||
{ | ||
|
||
D_Lebi_AdminSkin.Instance.Delete(para); | ||
} | ||
|
||
/// <summary> | ||
/// 得到一个对象实体 | ||
/// </summary> | ||
public static Lebi_AdminSkin GetModel(int id, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_AdminSkin.Instance.GetModel(id,seconds); | ||
} | ||
/// <summary> | ||
/// 得到一个对象实体 by where条件 | ||
/// </summary> | ||
public static Lebi_AdminSkin GetModel(string where, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_AdminSkin.Instance.GetModel(where,seconds); | ||
} | ||
public static Lebi_AdminSkin GetModel(SQLPara para, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_AdminSkin.Instance.GetModel(para,seconds); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// 得到最大ID | ||
/// </summary> | ||
public static int GetMaxId() | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetMaxID(""); | ||
} | ||
public static int GetMaxId(SQLPara para) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetMaxID(para); | ||
} | ||
public static int GetMaxId(string strWhere) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetMaxID(strWhere); | ||
} | ||
|
||
/// <summary> | ||
/// 获得数据列表 | ||
/// </summary> | ||
public static List<Lebi_AdminSkin> GetList(string strWhere,string strFieldOrder, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetList(strWhere,strFieldOrder,seconds); | ||
} | ||
public static List<Lebi_AdminSkin> GetList(SQLPara para, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetList(para,seconds); | ||
} | ||
public static List<Lebi_AdminSkin> GetList(string strWhere, string strFieldOrder, int PageSize, int page, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetList(strWhere,strFieldOrder,PageSize,page,seconds); | ||
} | ||
public static List<Lebi_AdminSkin> GetList(SQLPara para, int PageSize, int page, int seconds=0) | ||
{ | ||
return D_Lebi_AdminSkin.Instance.GetList(para,PageSize,page,seconds); | ||
} | ||
|
||
/// <summary> | ||
/// 绑定表单数据 | ||
/// </summary> | ||
public static Lebi_AdminSkin BindForm(Lebi_AdminSkin model) | ||
{ | ||
|
||
return D_Lebi_AdminSkin.Instance.BindForm(model); | ||
} | ||
/// <summary> | ||
/// 安全方式绑定表单数据 | ||
/// </summary> | ||
public static Lebi_AdminSkin SafeBindForm(Lebi_AdminSkin model) | ||
{ | ||
|
||
return D_Lebi_AdminSkin.Instance.SafeBindForm(model); | ||
} | ||
|
||
#endregion 成员方法 | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,158 @@ | ||
using System; | ||
using System.Data; | ||
using System.Collections.Generic; | ||
using System.Text.RegularExpressions; | ||
using LB.DataAccess; | ||
namespace DB.LebiShop | ||
{ | ||
/// <summary> | ||
/// 业务逻辑类B_Lebi_Admin_Group 的摘要说明。 | ||
/// </summary> | ||
public partial class B_Lebi_Admin_Group | ||
{ | ||
public B_Lebi_Admin_Group() | ||
{} | ||
#region 成员方法 | ||
|
||
/// <summary> | ||
/// 返回单个字符串 | ||
/// </summary> | ||
public static string GetValue(string col,string where, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetValue(col,where,seconds); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// 返回记录条数 | ||
/// </summary> | ||
public static int Counts(string where, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.Counts(where,seconds); | ||
} | ||
public static int Counts(SQLPara para, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.Counts(para,seconds); | ||
} | ||
|
||
/// <summary> | ||
/// 增加一条数据 | ||
/// </summary> | ||
public static int Add(Lebi_Admin_Group model) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.Add(model); | ||
} | ||
|
||
/// <summary> | ||
/// 更新一条数据 | ||
/// </summary> | ||
public static void Update(Lebi_Admin_Group model) | ||
{ | ||
D_Lebi_Admin_Group.Instance.Update(model); | ||
} | ||
|
||
/// <summary> | ||
/// 删除一条数据 | ||
/// </summary> | ||
public static void Delete(int id) | ||
{ | ||
|
||
D_Lebi_Admin_Group.Instance.Delete(id); | ||
} | ||
/// <summary> | ||
/// 删除多条数据 by where条件 | ||
/// </summary> | ||
public static void Delete(string where) | ||
{ | ||
|
||
D_Lebi_Admin_Group.Instance.Delete(where); | ||
} | ||
/// <summary> | ||
/// 删除多条数据 | ||
/// </summary> | ||
public static void Delete(SQLPara para) | ||
{ | ||
|
||
D_Lebi_Admin_Group.Instance.Delete(para); | ||
} | ||
|
||
/// <summary> | ||
/// 得到一个对象实体 | ||
/// </summary> | ||
public static Lebi_Admin_Group GetModel(int id, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_Admin_Group.Instance.GetModel(id,seconds); | ||
} | ||
/// <summary> | ||
/// 得到一个对象实体 by where条件 | ||
/// </summary> | ||
public static Lebi_Admin_Group GetModel(string where, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_Admin_Group.Instance.GetModel(where,seconds); | ||
} | ||
public static Lebi_Admin_Group GetModel(SQLPara para, int seconds=0) | ||
{ | ||
|
||
return D_Lebi_Admin_Group.Instance.GetModel(para,seconds); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// 得到最大ID | ||
/// </summary> | ||
public static int GetMaxId() | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetMaxID(""); | ||
} | ||
public static int GetMaxId(SQLPara para) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetMaxID(para); | ||
} | ||
public static int GetMaxId(string strWhere) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetMaxID(strWhere); | ||
} | ||
|
||
/// <summary> | ||
/// 获得数据列表 | ||
/// </summary> | ||
public static List<Lebi_Admin_Group> GetList(string strWhere,string strFieldOrder, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetList(strWhere,strFieldOrder,seconds); | ||
} | ||
public static List<Lebi_Admin_Group> GetList(SQLPara para, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetList(para,seconds); | ||
} | ||
public static List<Lebi_Admin_Group> GetList(string strWhere, string strFieldOrder, int PageSize, int page, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetList(strWhere,strFieldOrder,PageSize,page,seconds); | ||
} | ||
public static List<Lebi_Admin_Group> GetList(SQLPara para, int PageSize, int page, int seconds=0) | ||
{ | ||
return D_Lebi_Admin_Group.Instance.GetList(para,PageSize,page,seconds); | ||
} | ||
|
||
/// <summary> | ||
/// 绑定表单数据 | ||
/// </summary> | ||
public static Lebi_Admin_Group BindForm(Lebi_Admin_Group model) | ||
{ | ||
|
||
return D_Lebi_Admin_Group.Instance.BindForm(model); | ||
} | ||
/// <summary> | ||
/// 安全方式绑定表单数据 | ||
/// </summary> | ||
public static Lebi_Admin_Group SafeBindForm(Lebi_Admin_Group model) | ||
{ | ||
|
||
return D_Lebi_Admin_Group.Instance.SafeBindForm(model); | ||
} | ||
|
||
#endregion 成员方法 | ||
} | ||
} | ||
|
Oops, something went wrong.