上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页
摘要: /// /// 简单分页列表类 /// public class SimplePagedList { /// /// 每页页面大小 /// public int PageSize { get; set; } /// /// 页面总数 /// ... 阅读全文
posted @ 2017-12-18 18:03 zslm___ 阅读(366) 评论(0) 推荐(0) 编辑
摘要: /// /// 分页列表类 /// public class PagedList { /// /// 每页页面大小 /// public int PageSize { get; private set; } /// /// 页面总数 /// ... 阅读全文
posted @ 2017-12-18 18:02 zslm___ 阅读(139) 评论(0) 推荐(0) 编辑
摘要: using System.Runtime.Serialization; /// /// 通用分页请求类 /// [DataContract] public class PagedListModelReq : Request { /// /// Initializes a new instance of the... 阅读全文
posted @ 2017-12-12 09:16 zslm___ 阅读(278) 评论(0) 推荐(0) 编辑
摘要: 1.初始化 2.在global.asax.cs 3.手工获取 4.参考 http://www.360doc.com/content/14/0620/09/10504424_388250715.shtml 阅读全文
posted @ 2017-12-11 16:29 zslm___ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2017-12-11 12:31 zslm___ 阅读(573) 评论(0) 推荐(0) 编辑
摘要: using Autofac; using Microsoft.Practices.ServiceLocation; namespace Core.Common { /// /// 获取被Autofac注入的实例BeanFactory /// public class BeanFactory { /// /// 获取B... 阅读全文
posted @ 2017-12-11 12:29 zslm___ 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2017-12-04 17:38 zslm___ 阅读(3590) 评论(1) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2017-12-04 14:55 zslm___ 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1 2.调用方法 阅读全文
posted @ 2017-11-17 15:38 zslm___ 阅读(865) 评论(0) 推荐(0) 编辑
摘要: import java.math.BigDecimal; import java.math.RoundingMode; import java.text.DecimalFormat; public final class AmountUtil { private static DecimalFormat LIMIT_AMOUNT_FORMAT = new DecimalFormat... 阅读全文
posted @ 2017-11-09 12:19 zslm___ 阅读(392) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页