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

            using (cnn = GetConnection())
            {
                var ts = cnn.BeginTransaction();
                try
                {
                    var    user = this.UserInfoGet(request.Token, ts);
                    string sql  = this.GetPageSql("*",
                                                  @" TKS_FAS_CaculateHelperItem where accountId=@AccountId",
                                                  " iscustom desc,title ",
                                                  request.PageSize,
                                                  request.PageIndex);

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

                    string countSql = @"select count(1) from  TKS_FAS_CaculateHelperItem where accountId=@AccountId";

                    int total = int.Parse(cnn.ExecuteScalar(countSql, new
                    {
                        AccountId = user.AccountId
                    }, 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 ResponseCalHelperListSearch);
                }
            }
        }