public ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition GetEntity(string where)
 {
     DataTable dt = this.Select(where,"");
     if(dt.Rows.Count==0) return null;
     DataRow dr = dt.Rows[0];
     ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition Entity = new ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition();
     Entity.ID = int.Parse(dr["ID"].ToString());
     Entity.SaleManUserID = dr["SaleManUserID"] as int?;
     Entity.Money = dr["Money"] as decimal?;
     Entity.Memo = dr["Memo"] as string;
     Entity.IsShow = dr["IsShow"] as bool?;
     Entity.CreateTime = dr["CreateTime"] as DateTime?;
     return Entity;
 }
        public ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition[] GetEntityList(string orderBy,string[] columns,params object[] values)
        {
            StringBuilder builder = new StringBuilder();
            builder.Append("select * from [Coupons_CashWhenFee_Condition] where 1=1");
            db.Parameters.Clear();
            for(int i=0;i<columns.Length;i++)
            {
                builder.AppendFormat(" and [{0}]=@{0}", columns[i]);
                db.Parameters.Append("@"+columns[i],values[i]);
            }

            if (!string.IsNullOrEmpty(orderBy))
            {
                builder.AppendFormat(" order by {0}", orderBy);
            }

            DataTable dt = db.Select(builder.ToString());

            ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition[] EntityList = new ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition[dt.Rows.Count];
             if (dt.Rows.Count == 0) return EntityList;
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                DataRow dr = dt.Rows[i];
                ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition Entity = new ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition();
                Entity.ID = int.Parse(dr["ID"].ToString());
                Entity.SaleManUserID = dr["SaleManUserID"] as int?;
                Entity.Money = dr["Money"] as decimal?;
                Entity.Memo = dr["Memo"] as string;
                Entity.IsShow = dr["IsShow"] as bool?;
                Entity.CreateTime = dr["CreateTime"] as DateTime?;
                EntityList[i] = Entity;
            }
             return EntityList;
        }
 public ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition GetEntity(int  ID)
 {
     db.Parameters.Clear();
     db.Parameters.Append("@ID",ID);
     DataTable dt = db.Select("select * from [Coupons_CashWhenFee_Condition] where 1=1  and [ID]=@ID");
     if(dt.Rows.Count==0) return null;
     DataRow dr = dt.Rows[0];
     ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition Entity = new ADeeWu.HuoBi3J.Model.Coupons_CashWhenFee_Condition();
     Entity.ID = int.Parse(dr["ID"].ToString());
     Entity.SaleManUserID = dr["SaleManUserID"] as int?;
     Entity.Money = dr["Money"] as decimal?;
     Entity.Memo = dr["Memo"] as string;
     Entity.IsShow = dr["IsShow"] as bool?;
     Entity.CreateTime = dr["CreateTime"] as DateTime?;
     return Entity;
 }