123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319 |
- /*
- * 经营类型
- */
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Data;
- using MySystem.MainModels2;
- using Library;
- using LitJson;
- namespace MySystem.Services.Main2
- {
- public class BusinessScopeService
- {
- static string _conn = ConfigurationManager.AppSettings["SqlConnStr2"].ToString();
- /// <summary>
- /// 查询列表(适合多表关联查询)
- /// </summary>
- /// <param name="relationData">关联表</param>
- /// <param name="condition">查询条件(sql语句)</param>
- /// <param name="count">总数(输出)</param>
- /// <param name="page">页码</param>
- /// <param name="limit">每页条数</param>
- /// <returns></returns>
- public static List<Dictionary<string, object>> List(List<RelationData> relationData, string condition, out int count, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
- {
- List<string> fields = new List<string>(); //要显示的列,不设置则返回全部字段
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).IndexData("BusinessScope", relationData, orderBy, page, limit, condition, fields);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- count = int.Parse(obj["count"].ToString());
- return diclist;
- }
- public static List<Dictionary<string, object>> List(List<RelationData> relationData, string condition, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
- {
- List<string> fields = new List<string>(); //要显示的列,不设置则返回全部字段
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).IndexData("BusinessScope", relationData, orderBy, page, limit, condition, fields);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- return diclist;
- }
- /// <summary>
- /// 查询列表(单表)
- /// </summary>
- /// <param name="fieldList">返回的字段</param>
- /// <param name="condition">查询条件</param>
- /// <param name="page">页码</param>
- /// <param name="limit">每页条数</param>
- /// <param name="orderBy">排序</param>
- /// <returns></returns>
- public static List<Dictionary<string, object>> List(string fieldList, string condition, int page = 1, int limit = 30, string orderBy = "Sort desc,Id desc")
- {
- List<string> fields = fieldList.Split(',').ToList(); //要显示的列
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).IndexData("BusinessScope", new List<RelationData>(), orderBy, page, limit, condition, fields);
- List<Dictionary<string, object>> diclist = obj["data"] as List<Dictionary<string, object>>;
- return diclist;
- }
- /// <summary>
- /// 查询一条记录
- /// </summary>
- /// <param name="Id">主键Id</param>
- /// <returns></returns>
- public static BusinessScope Query(int Id)
- {
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query("*", "BusinessScope", Id);
- if (obj.Keys.Count > 0)
- {
- return Newtonsoft.Json.JsonConvert.DeserializeObject<BusinessScope>(Newtonsoft.Json.JsonConvert.SerializeObject(obj));
- }
- return new BusinessScope();
- }
- /// <summary>
- /// 查询一条记录
- /// </summary>
- /// <param name="condition">查询条件(sql语句)</param>
- /// <returns></returns>
- public static BusinessScope Query(string condition)
- {
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query("*", "BusinessScope", condition);
- if (obj.Keys.Count > 0)
- {
- return Newtonsoft.Json.JsonConvert.DeserializeObject<BusinessScope>(Newtonsoft.Json.JsonConvert.SerializeObject(obj));
- }
- return new BusinessScope();
- }
- /// <summary>
- /// 查询一条记录
- /// </summary>
- /// <param name="condition">查询条件(sql语句)</param>
- /// <param name="fields">返回的字段</param>
- /// <returns></returns>
- public static Dictionary<string, object> Query(string condition, string fields)
- {
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query(fields, "BusinessScope", condition);
- return obj;
- }
- public static decimal Sum(string condition, string field)
- {
- decimal amount = 0;
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query("Sum(" + field + ") " + field + "", "BusinessScope", condition);
- if (obj.Keys.Count > 0)
- {
- amount = decimal.Parse(function.CheckNum(obj[field].ToString()));
- }
- return amount;
- }
- /// <summary>
- /// 查询记录数
- /// </summary>
- /// <param name="Id">主键Id</param>
- /// <returns></returns>
- public static int Count(string condition = "", string field = "Id")
- {
- int result = 0;
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query("count(" + field + ") " + field + "", "BusinessScope", condition);
- if (obj.Keys.Count > 0)
- {
- result = int.Parse(function.CheckInt(obj[field].ToString()));
- }
- return result;
- }
- /// <summary>
- /// 查询是否存在
- /// </summary>
- /// <param name="Id">主键Id</param>
- /// <returns></returns>
- public static bool Exist(string condition)
- {
- Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Query("1", "BusinessScope", condition);
- if (obj.Keys.Count > 0)
- {
- return true;
- }
- return false;
- }
- /// <summary>
- /// 添加数据
- /// </summary>
- /// <param name="Fields">要设置的字段</param>
- /// <returns></returns>
- public static AppResultJson Add(Dictionary<string, object> fields, bool check = true)
- {
- if (check)
- {
- if (string.IsNullOrEmpty(fields["Name"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写名称" };
- }
- if (string.IsNullOrEmpty(fields["Mobile"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
- }
- if (string.IsNullOrEmpty(fields["ActivationStatus"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写激活状态" };
- }
- if (string.IsNullOrEmpty(fields["ActMaxAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写活动应返金额" };
- }
- if (!function.IsNum(fields["ActMaxAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的活动应返金额" };
- }
- if (string.IsNullOrEmpty(fields["ActCurrentAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写活动已返金额" };
- }
- if (!function.IsNum(fields["ActCurrentAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的活动已返金额" };
- }
- if (!function.IsInt(fields["IsAct"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的商户激活标记" };
- }
- if (!function.IsInt(fields["ExamineStatus"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的服务费考核状态" };
- }
- if (!function.IsInt(fields["Months"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的达标月数" };
- }
- }
- int Id = new DbServiceNew(AppConfig.Base.main2Tables, _conn).Add("BusinessScope", fields, 0);
- return new AppResultJson() { Status = "1", Data = Id };
- }
- /// <summary>
- /// 修改数据
- /// </summary>
- /// <param name="Fields">要设置的字段</param>
- /// <param name="Id">主键Id</param>
- public static AppResultJson Edit(Dictionary<string, object> fields, int Id, bool check = true)
- {
- if (check)
- {
- if (string.IsNullOrEmpty(fields["Name"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写名称" };
- }
- if (string.IsNullOrEmpty(fields["Mobile"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写手机号" };
- }
- if (string.IsNullOrEmpty(fields["ActivationStatus"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写激活状态" };
- }
- if (string.IsNullOrEmpty(fields["ActMaxAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写活动应返金额" };
- }
- if (!function.IsNum(fields["ActMaxAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的活动应返金额" };
- }
- if (string.IsNullOrEmpty(fields["ActCurrentAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写活动已返金额" };
- }
- if (!function.IsNum(fields["ActCurrentAmount"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的活动已返金额" };
- }
- if (!function.IsInt(fields["IsAct"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的商户激活标记" };
- }
- if (!function.IsInt(fields["ExamineStatus"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的服务费考核状态" };
- }
- if (!function.IsInt(fields["Months"].ToString()))
- {
- return new AppResultJson() { Status = "-1", Info = "请填写正确的达标月数" };
- }
- }
- new DbServiceNew(AppConfig.Base.main2Tables, _conn).Edit("BusinessScope", fields, Id);
- return new AppResultJson() { Status = "1", Data = Id };
- }
- /// <summary>
- /// 逻辑删除
- /// </summary>
- /// <param name="Id">主键Id</param>
- public static void Remove(int Id)
- {
- Dictionary<string, object> fields = new Dictionary<string, object>();
- fields.Add("Status", -1);
- new DbServiceNew(AppConfig.Base.main2Tables, _conn).Edit("BusinessScope", fields, Id);
- }
- /// <summary>
- /// 删除数据
- /// </summary>
- /// <param name="Id">主键Id</param>
- public static void Delete(int Id)
- {
- new DbServiceNew(AppConfig.Base.main2Tables, _conn).Delete("BusinessScope", Id);
- }
- /// <summary>
- /// 排序
- /// </summary>
- /// <param name="Id">主键Id</param>
- /// <param name="Sort">排序序号</param>
- public static void Sort(int Id, int Sort)
- {
- new DbServiceNew(AppConfig.Base.main2Tables, _conn).Sort("BusinessScope", Sort, Id);
- }
- /// <summary>
- /// 导入数据
- /// </summary>
- /// <param name="ExcelData">json数据</param>
- public static void Import(string ExcelData)
- {
- // WebCMSEntities db = new WebCMSEntities();
- // JsonData list = JsonMapper.ToObject(ExcelData);
- // for (int i = 1; i < list.Count;i++ )
- // {
- // JsonData dr = list[i];
- // db.BusinessScope.Add(new BusinessScope()
- // {
- // CreateDate = DateTime.Now,
- // UpdateDate = DateTime.Now,
- // });
- // db.SaveChanges();
- // }
- // db.Dispose();
- }
- /// <summary>
- /// 导出excel表格
- /// </summary>
- /// <param name="fields">查询条件(单个字段)</param>
- /// <param name="condition">查询条件(sql语句)</param>
- /// <returns></returns>
- // public static void ExportExcel(List<RelationData> relationData, string condition)
- // {
- // }
- }
- }
|