摘要: 分页工具类 package com.etc.util; import java.util.List; /**分页工具类*/ public class Page<T> { // 总页数 private int totalPageCount = 1; // 页面大小,即每页显示记录数 private i 阅读全文
posted @ 2021-07-11 18:51 '大聪明 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 日期转换工具类 package com.etc.util; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; /** 日期转换工具类 */ public class D 阅读全文
posted @ 2021-07-11 18:42 '大聪明 阅读(188) 评论(0) 推荐(0) 编辑