|
|
@@ -0,0 +1,303 @@
|
|
|
+/*
|
|
|
+ * 商户活动配置
|
|
|
+ */
|
|
|
+
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Linq;
|
|
|
+using System.Data;
|
|
|
+using MySystem.Models.Main1;
|
|
|
+using Library;
|
|
|
+using LitJson;
|
|
|
+
|
|
|
+namespace MySystem.Service.Main1
|
|
|
+{
|
|
|
+ public class MerchantParamSetService
|
|
|
+ {
|
|
|
+ static string _conn = ConfigurationManager.AppSettings["SqlConnStr1"].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.main1Tables, _conn).IndexData("MerchantParamSet", 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.main1Tables, _conn).IndexData("MerchantParamSet", 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.main1Tables, _conn).IndexData("MerchantParamSet", 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 MerchantParamSet Query(int Id)
|
|
|
+ {
|
|
|
+ Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main1Tables, _conn).Query("*", "MerchantParamSet", Id);
|
|
|
+ if(obj.Keys.Count > 0)
|
|
|
+ {
|
|
|
+ return Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantParamSet>(Newtonsoft.Json.JsonConvert.SerializeObject(obj));
|
|
|
+ }
|
|
|
+ return new MerchantParamSet();
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 查询一条记录
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="condition">查询条件(sql语句)</param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public static MerchantParamSet Query(string condition)
|
|
|
+ {
|
|
|
+ Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main1Tables, _conn).Query("*", "MerchantParamSet", condition);
|
|
|
+ if(obj.Keys.Count > 0)
|
|
|
+ {
|
|
|
+ return Newtonsoft.Json.JsonConvert.DeserializeObject<MerchantParamSet>(Newtonsoft.Json.JsonConvert.SerializeObject(obj));
|
|
|
+ }
|
|
|
+ return new MerchantParamSet();
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <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.main1Tables, _conn).Query(fields, "MerchantParamSet", condition);
|
|
|
+ return obj;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static decimal Sum(string condition, string field)
|
|
|
+ {
|
|
|
+ decimal amount = 0;
|
|
|
+ Dictionary<string, object> obj = new DbServiceNew(AppConfig.Base.main1Tables, _conn).Query("Sum(" + field + ") " + field + "", "MerchantParamSet", condition);
|
|
|
+ if(obj.Keys.Count > 0)
|
|
|
+ {
|
|
|
+ amount = decimal.Parse(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.main1Tables, _conn).Query("count(" + field + ") " + field + "", "MerchantParamSet", 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.main1Tables, _conn).Query("1", "MerchantParamSet", 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["IsAll"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写是否收全额" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["MinPayMoney"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写订单参与门槛" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["GetPercent"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写商家实收比例" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["ProfitDays"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写分红期限(天)" };
|
|
|
+}
|
|
|
+if (!function.IsInt(fields["ProfitDays"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写正确的分红期限(天)" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["DiviPercent"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写最大分红比例" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["DiviPersons"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写单笔订单分红人数" };
|
|
|
+}
|
|
|
+if (!function.IsInt(fields["DiviPersons"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写正确的单笔订单分红人数" };
|
|
|
+}
|
|
|
+
|
|
|
+ }
|
|
|
+ int Id = new DbServiceNew(AppConfig.Base.main1Tables, _conn).Add("MerchantParamSet", 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["IsAll"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写是否收全额" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["MinPayMoney"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写订单参与门槛" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["GetPercent"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写商家实收比例" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["ProfitDays"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写分红期限(天)" };
|
|
|
+}
|
|
|
+if (!function.IsInt(fields["ProfitDays"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写正确的分红期限(天)" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["DiviPercent"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写最大分红比例" };
|
|
|
+}
|
|
|
+if (string.IsNullOrEmpty(fields["DiviPersons"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写单笔订单分红人数" };
|
|
|
+}
|
|
|
+if (!function.IsInt(fields["DiviPersons"].ToString()))
|
|
|
+{
|
|
|
+ return new AppResultJson() { Status = "-1", Info = "请填写正确的单笔订单分红人数" };
|
|
|
+}
|
|
|
+
|
|
|
+ }
|
|
|
+ new DbServiceNew(AppConfig.Base.main1Tables, _conn).Edit("MerchantParamSet", 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.main1Tables, _conn).Edit("MerchantParamSet", fields, Id);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 删除数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="Id">主键Id</param>
|
|
|
+ public static void Delete(int Id)
|
|
|
+ {
|
|
|
+ new DbServiceNew(AppConfig.Base.main1Tables, _conn).Delete("MerchantParamSet", Id);
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 排序
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="Id">主键Id</param>
|
|
|
+ /// <param name="Sort">排序序号</param>
|
|
|
+ public static void Sort(int Id, int Sort)
|
|
|
+ {
|
|
|
+ new DbServiceNew(AppConfig.Base.main1Tables, _conn).Sort("MerchantParamSet", 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.MerchantParamSet.Add(new MerchantParamSet()
|
|
|
+ // {
|
|
|
+ // 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)
|
|
|
+ // {
|
|
|
+
|
|
|
+ // }
|
|
|
+ }
|
|
|
+}
|