Ejemplo n.º 1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(Wuyiju.Model.Enroll model)
        {
            StringBuilder sql = new StringBuilder();

            sql.Append("update Enroll set ");

            sql.Append(" user_id = @user_id , ");
            sql.Append(" cid = @cid , ");
            sql.Append(" c_time = @c_time , ");
            sql.Append(" c_name = @c_name , ");
            sql.Append(" t_name = @t_name , ");
            sql.Append(" add_time = @add_time  ");
            sql.Append(" where id=@id ");

            DynamicParameters param = new DynamicParameters();

            if (model != null)
            {
                param.AddDynamicParams(model);
            }

            var rows = db.Execute(sql, param);

            if (rows < 1)
            {
                throw new ApplicationException("更新数据无效");
            }
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public void Add(Wuyiju.Model.Enroll obj)
        {
            if (obj == null)
            {
                throw new ApplicationException("参数不能为空");
            }

            dao.Insert(obj);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// 删除一条数据
        /// </summary>
        public void Remove(Wuyiju.Model.Enroll obj)
        {
            if (obj == null)
            {
                throw new ApplicationException("参数不能为空");
            }

            var old = dao.Get(obj.Id);

            if (old == null)
            {
                throw new ApplicationException("非法操作记录不存在");
            }

            dao.Delete(obj.Id);
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public void Insert(Wuyiju.Model.Enroll model)
        {
            StringBuilder sql = new StringBuilder();

            sql.Append("insert into ec_enroll(");
            sql.Append("user_id,cid,c_time,c_name,t_name,add_time");
            sql.Append(") values (");
            sql.Append("@user_id,@cid,@c_time,@c_name,@t_name,@add_time");
            sql.Append(") ");

            DynamicParameters param = new DynamicParameters();

            if (model != null)
            {
                param.AddDynamicParams(model);
            }

            var rows = db.Execute(sql, param);

            if (rows < 1)
            {
                throw new ApplicationException("插入数据无效");
            }
        }