示例#1
0
        public IHttpActionResult Query(int currentPage = 1, int pageSize = 100, int BillId = 0, int FeeNo = 0, int OrgeId = 0)
        {
            BaseRequest <CostDtlFilter> request = new BaseRequest <CostDtlFilter>
            {
                CurrentPage = currentPage,
                PageSize    = pageSize,
                Data        = { FeeNo = FeeNo, BillId = BillId, OrgId = SecurityHelper.CurrentPrincipal.OrgId }
            };
            var response = service.QueryCostDtl(request);

            return(Ok(response));
        }