zoukankan      html  css  js  c++  java
  • link

      public IEnumerable InsuranceSearch(InsuranceSC sc, out int TotalCount)
            {
                var data = from q in InsuranceDAL.InsuranceSearch(sc, out TotalCount).AsEnumerable()
                           select new {
                               Id=q.Field<int>("Id"),
                               IPOutId = q.Field<int>("IPOutId"),
                               SIName = String.IsNullOrEmpty(q.Field<string>("SIName")) ? "" : q.Field<string>("SIName"),
                               IPSupplierId = q.Field<int>("IPSupplierId"),
                               IPName = q.Field<string>("IPName"),
                               IPPrice = q.Field<decimal>("IPPrice"),
                               IPCoverage = q.Field<decimal>("IPCoverage"),
                               IPStartDate = q.Field<DateTime>("IPStartDate").ToString("yyyy-MM-dd"),
                               IPEndDate = q.Field<DateTime>("IPEndDate").ToString("yyyy-MM-dd"),
                               IPValidDays = q.Field<int>("IPValidDays"),
                               IPTaskOffType = q.Field<byte>("IPTaskOffType")==2?"比例":"固定值",
                               IPTaskOffAmount = q.Field<decimal>("IPTaskOffAmount"),
                               IPMaxCopies = q.Field<int>("IPMaxCopies"),
                               IPFlag = q.Field<byte>("IPFlag")
                           };
                return data;
            }
    
  • 相关阅读:
    第五次作业
    第四次作业
    第三次作业
    第二次作业
    第一次作业
    实验三 算术编码压缩方法
    实验二 统计压缩方法的具体实现
    实验一 建立统计压缩方法理论模型
    第五次作业
    第四次作业
  • 原文地址:https://www.cnblogs.com/sisiblog/p/3412983.html
Copyright © 2011-2022 走看看