using LYFZ.Helper;
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
namespace LYFZ.WeixinServiceDate.DAL
{
public class DAL_DZKJ_DistributorAccount : BaseDataOperate
{
public DAL_DZKJ_DistributorAccount()
{
this.TableFieldNameString = "";
}
#region 属性和字段
string _tableName = "tb_DZKJ_DistributorAccount";
///
/// 获取数据表名
///
public override string TableName
{
get { return _tableName; }
set { this._tableName = value; }
}
///
/// 获取当前新的数据表模型对象
///
public override object ObjModel
{
get
{
return this.CurrentModel;
}
}
///
/// 获取当前新的MOdel
///
public Model.Model_DZKJ_DistributorAccount CurrentModel
{
get { return new Model.Model_DZKJ_DistributorAccount(); }
}
string _tableFieldNameString = "";
///
/// 数据表字段名数组
///
public override string TableFieldNameString
{
get { return this._tableFieldNameString; }
set { this._tableFieldNameString = value; }
}
#endregion
#region 检查记录
//基类已经实现
#endregion
#region 增加数据
///
/// 增加一条数据
///
/// Model对象
/// 忽略字段名列表 字段名之间用“,”号分隔
///
public bool Add(Model.Model_DZKJ_DistributorAccount model, string overlookFieldList = "ID")
{
return base.Add(model, overlookFieldList);
}
#endregion
#region 删除数据
///
/// 删除数据
///
///
///
public bool Delete(Model.Model_DZKJ_DistributorAccount model)
{
return base.Delete(model.ID);
}
#endregion
#region 更新数据
///
/// 更新一条数据
///
public bool Update(Model.Model_DZKJ_DistributorAccount model)
{
return base.Update(model);
}
///
/// 根据筛选字段和SQL筛选运算符号更新数据
///
/// Model对象
/// 筛选字段名称
/// SQL筛选运算符号
/// 忽略字段名列表 字段名之间用“,”号分隔
///
public bool Update(Model.Model_DZKJ_DistributorAccount model, string filterFieldName = "ID", string operators = "=", string overlookFieldList = "ID")
{
return base.Update(model, filterFieldName, operators, overlookFieldList);
}
#endregion
#region 查询数据
///
/// 得到一个对象实体
///
public Model.Model_DZKJ_DistributorAccount GetModel(long ID)
{
return DataRowToModel(GetDataRow(ID));
}
public Model.Model_DZKJ_DistributorAccount GetModel(string strWhere)
{
return DataRowToModel(GetDataRow(strWhere));
}
///
/// 得到一个对象实体
///
///
///
public Model.Model_DZKJ_DistributorAccount DataRowToModel(DataRow row)
{
return DataRowToModelObject(row) as Model.Model_DZKJ_DistributorAccount;
}
public bool UpdateLatestLoginTime(string Account, string ip, string LatestLoginTime)
{
string updateSql = "update [tb_Model_DZKJ_DistributorAccount] set ip='" + ip + "',LatestLoginTime='" + LatestLoginTime + "' where Account='" + Account + "'";
if (LYFZ.Helper.SQLHelper.ExecuteSql(updateSql) > 0)
{
return true;
}
else
{
return false;
}
}
#endregion
#region 数据分页
//基类已实现相关方法
#endregion
public bool Recharge(long Id, string UserName, int Mouney, int Count, string RechargeDescription)
{
try
{
LYFZ.WeixinServiceDate.DAL.DAL_DZKJ_DistributorRechargeRecords DZKJRec_Dal = new WeixinServiceDate.DAL.DAL_DZKJ_DistributorRechargeRecords();
LYFZ.WeixinServiceDate.Model.Model_DZKJ_DistributorRechargeRecords DZKJRecModel = new WeixinServiceDate.Model.Model_DZKJ_DistributorRechargeRecords();
DZKJRecModel.DistributorID = Id;
DZKJRecModel.RechargeTime = DateTime.Now;
DZKJRecModel.RechargeUser = UserName;
DZKJRecModel.RechargeMoney = Mouney;
DZKJRecModel.RechargeCount = Count;
DZKJRecModel.RechargeDescription = RechargeDescription;
DZKJRec_Dal.Add(DZKJRecModel);
Model.Model_DZKJ_DistributorAccount MDDistAccount = this.GetModel(Id);
MDDistAccount.ID = Id;
MDDistAccount.StartSimulatorCount += Count;
this.Update(MDDistAccount);
}
catch
{
return false;
}
return true;
}
}
}