public ResponseBBtplListSearch BBtplListSearch([FromBody] RequestBBtplListSearch request)
 {
     try
     {
         ReportTplBLL bll = new ReportTplBLL();
         return(bll.BBtplListSearch(request));
     }
     catch (Exception ex)
     {
         throw new HttpResponseException(
                   Request.CreateErrorResponse(HttpStatusCode.InternalServerError, ex.Message));
     }
 }
Beispiel #2
0
        public ResponseBBtplListSearch BBtplListSearch(RequestBBtplListSearch request)
        {
            ResponseBBtplListSearch response = new ResponseBBtplListSearch();

            using (cnn = GetConnection())
            {
                var ts = cnn.BeginTransaction();
                try
                {
                    var user = this.UserInfoGetButAccount(request.Token, ts);
                    string where = string.Empty;


                    string sql = this.GetPageSql("A.* ",
                                                 @"  TKS_FAS_ReportTPL A where A.accountId='-'",
                                                 " A.createDate  desc ",
                                                 request.PageSize,
                                                 request.PageIndex);

                    List <TKS_FAS_ReportTPL> data = cnn.Query <TKS_FAS_ReportTPL>(sql,
                                                                                  new
                    {
                    }, ts).ToList();

                    string countSql = @"select count(1) from TKS_FAS_ReportTPL A where A.accountId='-'
                      ";

                    int total = int.Parse(cnn.ExecuteScalar(countSql, new
                    {
                    }, ts).ToString());

                    ts.Commit();
                    response.IsSuccess = true;
                    response.Message   = "加载完毕";
                    response.PageIndex = request.PageIndex;
                    response.Data      = data;
                    response.Total     = total;
                    return(response);
                }
                catch (Exception ex)
                {
                    ts.Rollback();
                    return(this.DealException(response, ex) as ResponseBBtplListSearch);
                }
            }
        }